-
Notifications
You must be signed in to change notification settings - Fork 0
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 branchnpm 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