Run the script update.command (double-click or run in terminal) in order to pull the changes, install the dependencies and build the koral-server.
Use git pull to retrieve the changes from the online repository. Use git pushto send your changes to the online repository.
When some changes are made in the webviews, sources are in koral-server-src. Build and deploy changes to koral-server by running npm run build-server in the root of the project.
To make a version, you will need to retrieve the changes from the online repository, and to commit all you changes.
Then, you can use:
npm version patchto increment the last number (eg. from1.0.0to1.0.1)npm version minorto increment the middle number (eg. from1.0.0to1.1.0)npm version majorto increment the first number (eg. from1.0.0to2.0.0)
Do not forget to git push.