This document is a reminder checklist on how to publish a new version of the package to NPM.
- Merge branch onto
Master
, ensuring everything is up-to-date; - Run
npm ci
to ensure npm dependencies are up to date; - Build the project with
npm run build
; - Update version number
- in
package.json
; - in
package-lock.json
;
- in
- Update the
CHANGELOG.md
- Commit with Git with new version number;
- Create a Git tag with version number;
- Publish to NPM with
npm publish
; - Push to Git
- Push tags to Git