Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 685 Bytes

release.md

File metadata and controls

23 lines (19 loc) · 685 Bytes

Publishing:

  • Before publishing, update the release version in build.gradle to be the same as in package.json

  • Publishing is a matter of running the npm version command:

npm version major|minor|patch

which will

  1. Update the appropriate npm version and tag in git.
  2. Update the app/build.gradle file with the npm package version.
  3. Build the server and test app.
  4. Put everything into the expected place.

Followed by pushing the commit and running the npm publish command:

git push --tags origin master
npm publish

which will

  1. Push result to GitHub
  2. Publish to npm