Skip to content

How to release a new version?

Santiago Ferreira edited this page Jul 15, 2016 · 1 revision
  1. Write release notes and assign github tag
  2. Increase version number
$ npm version minor
  1. Push code to github and push tags
$ git push github master
$ git push --tags github
  1. Publish release notes in github
  2. Publish npm package
$ npm login
Username: your_npm_username
Password:
Email: (this IS public) your_email@example.com
$ npm publish
Clone this wiki locally