Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 475 Bytes

CONTRIBUTING.md

File metadata and controls

26 lines (18 loc) · 475 Bytes

Contributing

Pull Requests

When merging Pull Requests on GitHub, use the squash and merge button, so that our timeline of master branch is linear.

Releases

To publish a new release:

$ git checkout master
$ git pull origin master

$ npm run transpile
$ npm version patch(|minor|major)
$ npm publish
$ git push --follow-tags
$ npm run docs:publish

Or via Makefile:

$ make release VERSION=patch