@wrtech-dev/auth-core
v0.3.3
Published
npm version patch npm publish --access public
Readme
npm version patch npm publish --access public
To update permissions
$ git add . $ git commit -m 'update' $ git push
In client app $ npm install git+ssh://[email protected]:BlueNanoSolutions/wrtech-auth-core.git
✅ Update your npm package (quick path)
1. Bump version
In your package (wrtech-auth-core):
npm version patchOptions:
patch→ 1.0.0 → 1.0.1 (bug fixes)minor→ 1.0.0 → 1.1.0 (new features)major→ breaking changes
2. Publish
npm publish --access restrictedIf 2FA is enabled:
npm publish --access restricted --otp=XXXXXX3. Push tags (important)
git push
git push --tags🔎 Verify it worked
npm view @wrtech-dev/auth-core version✅ Update in your app
In your main app:
npm install @wrtech-dev/auth-core@latestor update package.json:
"@wrtech-dev/auth-core": "^1.0.1"Then:
npm installCommit:
git add package.json package-lock.json
git commit -m "update auth-core"
git push