Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 277 Bytes

PUBLISH.md

File metadata and controls

24 lines (18 loc) · 277 Bytes

Publish

New release

npm run build
npm version patch|minor|major
npm publish

New Beta Release

npm run build
npm version prerelease --preid=beta
npm publish --tag beta

Promote beta to release

npm version patch
npm publish