Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 416 Bytes

RELEASING.md

File metadata and controls

17 lines (12 loc) · 416 Bytes

Releasing

  1. If you haven't already, switch to the master branch, ensure that you have no changes, and pull from origin.

    $ git checkout master
    $ git status
    $ git pull <remote> master --rebase
  2. Bump package version

    $ npm version [major | minor | patch]
  3. postversion script will push tags to the repo, publish NPM package, and open GitHub release page.