Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 739 Bytes

RELEASE.md

File metadata and controls

43 lines (29 loc) · 739 Bytes

Release Instructions

  1. Build packages
$ ./node_modules/.bin/gulp build-packages
  1. Add release notes to CHANGELOG.md

  2. Change version number in package.json

  3. Change version number in bower.json

  4. Change version number in README.md

  5. Change version number in packages/meteor/package.js

  6. Change version number in packages/npm/package.json

  7. Commit changes and tag code

$ git add . --all
$ git commit -a -m "bumped version number"
$ git push origin master
$ git tag <version-number>
$ git push --tags
  1. Push changes to NPM
$ cd packages/npm
$ npm publish
  1. Update package on Meteor repository
$ cd packages/meteor
$ meteor publish