@stordata/supersecret
v1.0.3
Published
A super-secret utility
Downloads
21
Readme
supersecret
A Node module wrapping libsupersecret to do super secret stuff
Build
npm run build
You'll need libsupersecret
installed.
Tests
npm run lint
npm run test
Release
Tag the repository
git tag v$(jq -r .version package.json)
Increment version number in package.json
Update the lockfile
npm i
Commit 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.Z
Verify you are logged-in to the NPM registry
npm --registry $(jq -r .publishConfig.registry package.json) whoami
If not, log-in with
npm --registry $(jq -r .publishConfig.registry package.json) login
Publish
npm publish
Go back to
master
or to any other work branchgit checkout master