Skip to content

How to publish

Sascha Klatt edited this page Apr 17, 2021 · 1 revision

There should be a CI/CD pipeline to handle this, but for now the following steps have to be done manually.

Steps to publish to npm

  • bump version in package.json
  • yarn test:coverage
  • yarn build
  • cd dist
  • npm publish --tag latest or if next branch npm publish --tag next

Steps to push and tag git repo

  • git add .
  • git commit -m "vX.X.X"
  • git push
  • git tag vX.X.X
  • git push --tags
Clone this wiki locally