Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 591 Bytes

PUBLISHING.md

File metadata and controls

10 lines (9 loc) · 591 Bytes

How to publish this package

  1. Start a new branch git switch -c release/<the new version> origin/main
  2. Make sure the README is up-to-date for the new version (commit changes if necessary)
  3. Make sure tests pass locally rm -Rf ./node_modules && npm ci && npm test
  4. npm version <the new version> (this creates the git tag)
  5. git push origin v<the new version>
  6. Wait for CI to pass on the tagged version https://travis-ci.org/avh4/binwrap
  7. npm publish (if this is not a stable release, remember to add --tag rc)
  8. Push the branch, make a PR for it, and merge the PR