Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 419 Bytes

cheatsheet-publish.org

File metadata and controls

25 lines (18 loc) · 419 Bytes

Run tests

npm run test

Tag and Git push

  • update version in package.json
  • git commit
  • git push
  • git tag

Publish to npm

npm login
npm publish . --dry-run
npm publish .
# or to submit a beta version:
npm publish --tag v2beta.0 .

npm info # view output to visually verify the publish