1.0.4 • Published 11 months ago
@stordata/supersecret v1.0.4
supersecret
A Node module wrapping libsupersecret to do super secret stuff
Build
npm run buildYou'll need libsupersecret installed.
Tests
npm run lint
npm run testRelease
Tag the repository
git tag v$(jq -r .version package.json)Increment version number in package.json
Update the lockfile
npm iCommit your changes
git commit -am"[ci skip] Bumped version to $(jq -r .version package.json)"Push everything
git push origin master --tags
Publish on NPM
Checkout the tag you want to publish
git checkout vX.Y.ZVerify you are logged-in to the NPM registry
npm --registry $(jq -r .publishConfig.registry package.json) whoamiIf not, log-in with
npm --registry $(jq -r .publishConfig.registry package.json) loginPublish
npm publishGo back to
masteror to any other work branchgit checkout master