Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 573 Bytes

CONTRIBUTING.md

File metadata and controls

25 lines (18 loc) · 573 Bytes

Contributing

Thanks for contributing!

Development

$ yarn lint
$ yarn test

# ... or all together ...
$ yarn run check

Releasing a new version to NPM

Only for project administrators.

  1. Update CHANGELOG.md, following format for previous versions
  2. Commit as "Changes for version VERSION"
  3. Run npm version patch (or minor|major|VERSION) to run tests and lint, build published directories, then update package.json + add a git tag.
  4. Run npm publish and publish to NPM if all is well.
  5. Run git push && git push --tags