I did not yet have the time to configure GH Actions, so these my notes how to release by hand.
- Run tests
- Check the demo page in browser
- Bump version:
npm --no-git-tag-version --force version <major|minor|patch>
- Commit changes:
git commit -am "Release version <version>"
- Push changes:
git push
- Tag release:
git tag <version>
- Push tag:
git push --tags
- Publish to npm:
npm publish