2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-05-29 11:10:46 +00:00
nativefier/docs/release.md

38 lines
634 B
Markdown
Raw Normal View History

2016-03-13 07:27:32 +00:00
# Release Notes
2016-01-26 05:30:23 +00:00
2016-03-13 07:27:32 +00:00
My notes for release commands to NPM
2016-01-26 05:30:23 +00:00
## Releasing
At branch `development` ready to release to npm:
``` bash
# Make sure ci tests pass
$ npm run ci
# See the current version
$ npm version
# Update the changlog and perform cleanup on it
$ git changelog --tag <next version>
$ git add History.md
$ git commit -m "Update changelog for `v <next version>`"
$ npm version <next version>
# Can automate from here onwards
# Publish it to npm
$ npm run release
# Merge changes into master
$ git checkout master
$ git merge development
$ git push --follow-tags
# Return to development
$ git checkout development
```