Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 382 Bytes

RELEASE.md

File metadata and controls

15 lines (12 loc) · 382 Bytes

Releasing a new version

Packages are only released from the main branch after peer review.

  1. make sure you have the latest:
    • $ git checkout main
    • $ git pull
  2. make sure tests pass
    • $ npm test
  3. bump the version
    • $ npm version <major|minor|patch>
  4. push your tags:
    • $ git push origin main --follow-tags

CI will publish to npm when the build succeeds