Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 883 Bytes

README_INTERNAL.md

File metadata and controls

9 lines (8 loc) · 883 Bytes

Releasing

  1. Merge feature branches, bug fixes, and whatever changes into main after CI passes and PRs are approved
  2. Create a new branch off main when you're ready to release a new version
  3. On this branch make a commit to update unpkg links in the README to pull in the lastest version
  4. On this branch run npm version [...] (see npm-version docs for more info) which will bump the version in package.json and make a tag (for example npm version patch -m "Bump for 3.1.2"). Follow SemVer rules for patch/minor/major.
  5. Push the version commit and the tag git push && git push --tags origin
  6. Open Pull Request, "Rebase and merge" after approved
  7. Create a new release in the Github UI, give the release a name and add release notes (creating the release will kick off npm publish)