Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 377 Bytes

RELEASING.md

File metadata and controls

33 lines (22 loc) · 377 Bytes

Releasing

  • On master, update package.json with new version number. Follow semver.
  "version": "63.12.0",
  • Commit with message "Bump version".
git commit -m "Bump version"
  • Add git tag.
git tag 63.12.0
  • Push to GitHub.
git push
git push --tags
  • Publish to npm.
npm publish --access=public