Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 479 Bytes

RELEASE.md

File metadata and controls

31 lines (21 loc) · 479 Bytes

Release Instructions

  1. Build packages
$ npm run build-all
  1. Add release notes to CHANGELOG.md

  2. Change version number in package.json

  3. Change version number in bower.json

  4. Update CDN urls in README.md

  5. Commit changes and tag code

$ git add . --all
$ git commit -a -m "bumped version number"
$ git push origin main
$ git tag <version-number>
$ git push --tags
  1. Push changes to NPM
$ npm publish