Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 393 Bytes

RELEASE.md

File metadata and controls

18 lines (16 loc) · 393 Bytes

Release Checklist

Update version, tag, and publish

$ git checkout main
$ npm install
$ npm run test
$ Update CHANGELOG
$ Update version number in `package.json`
$ git add .
$ git commit -m 'vA.B.C'
$ git tag vA.B.C
$ git push origin main vA.B.C
$ npm publish