Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 546 Bytes

RELEASE.md

File metadata and controls

40 lines (30 loc) · 546 Bytes

Release

Increment version

Increment the version in package.json and package-lock.json following semver rules, guided by the Conventional Commits contained within.

Generate changelog

$ npm run changelog
...

Commit to git

$ git add -A
...
$ git commit -m "chore(release): cut version X.Y.Z"
...
$ git push origin master
...

Create git tag

$ git tag -a vX.Y.Z -m "chore(release): cut version X.Y.Z"
...
$ git push --tags
...

Publish to NPM

$ npm publish
...