Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 430 Bytes

File metadata and controls

24 lines (18 loc) · 430 Bytes

NPM Package Publishing Guide

Login to npm

npm login

Full Release Workflow

  1. Update CHANGELOG.md
  2. Run e2e and unit tests
  3. Commit and push changes
  4. Run version command:
npm version x.y.z -m "Release v%s"

git push && git push --tags happens automatically right after version due to the package.json "postversion" script

  1. Run publish command:
npm publish --access public