Increment the version in package.json
and package-lock.json
following semver rules, guided by
the Conventional Commits contained within.
$ npm run changelog
...
$ git add -A
...
$ git commit -m "chore(release): cut version X.Y.Z"
...
$ git push origin master
...
$ git tag -a vX.Y.Z -m "chore(release): cut version X.Y.Z"
...
$ git push --tags
...
$ npm publish
...