Skip to content

Publishing new version

Serhii Zadorozhnyi edited this page Jul 31, 2024 · 3 revisions

In order to publish new version of packages you have to do following:

  • switch to master branch
  • pull latest changes
  • run following command in terminal from the root folder:
npx lerna version [patch|minor|major]

NOTE: you will need a permissions to manage tags for repository in order to run this command This will bump all packages version, tag current commit and push it. There is a CI job that builds and publishes packages versions to npm.

This job is triggered on each commit and if current version is not yet published, it will publish it.

Clone this wiki locally