To start the project you need to have the following tools installed:
- Node.js v20
- NPM v10
- WebStorm or any other IDE that supports Typescript
- Git
-
Clone the repo
git clone git@github.com:carlosupreme/arena-split-core.git
-
Navigate to the
arena-split-core
foldercd arena-split-core
-
Inmediately after cloning the repository you need to move to the
develop
branchgit checkout develop
-
And create your own branch
git checkout -b my-new-feature
-
Install the dependencies
npm install
-
Run the tests
npm run test
-
Build the application to ensure everything is working fine
npm run build
Once you have the application running you can start developing in the core. The core is the main application that will be
used by other applications like the api
or the web
application.
When you are developing in the core application you need to follow these steps
Do Test Driven Development
please, write the test first and then write the code to make the test pass
Suppose that you made a new feature (with tests).
You can deploy the core application to npm
and then other developers that are using the core will have your
changes.
Just run the following commands:
Obviously the tests should be passing before deploying, so ensure that
npm run test
Then run the following command to build the application
npm run build
The successful output should look like this:
> arena-split-core@0.0.9-SNAPSHOT build
> tsup
CLI Building entry: src/index.ts
CLI Using tsconfig: tsconfig.json
CLI tsup v8.1.0
CLI Using tsup config: /home/carlos/programacion/arena-split/core/package.json
CLI Target: es2020
CLI Cleaning output folder
CJS Build start
ESM Build start
ESM dist/index.mjs 4.07 KB
ESM dist/index.mjs.map 16.80 KB
ESM ⚡️ Build success in 132ms
CJS dist/index.js 4.32 KB
CJS dist/index.js.map 16.45 KB
CJS ⚡️ Build success in 145ms
DTS Build start
DTS ⚡️ Build success in 1442ms
DTS dist/index.d.ts 5.38 KB
DTS dist/index.d.mts 5.38 KB
After that, change the package.json
version to a new version, following our versioning guide
.
// package.json before
{
"version": "1.1.0"
}
// package.json after
{
"version": "1.2.0"
}
And then publish it to npm
npm publish --tag latest
If everything goes well commit your branch and push it to the remote repository
git add . && git commit -m 'new feature' && git push origin my-new-feature
Finally open a pull request to the develop
branch and wait for the approval