@sejinjja/promise-pool-kit 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -111,16 +111,20 @@ npm run check
|
|
|
111
111
|
|
|
112
112
|
```bash
|
|
113
113
|
npm run check
|
|
114
|
-
npm publish --access public
|
|
114
|
+
npm publish --access public --//registry.npmjs.org/:_authToken=$NPM_TOKEN
|
|
115
115
|
```
|
|
116
116
|
|
|
117
|
-
If the package is scoped and
|
|
117
|
+
If the package is scoped and publish fails with `E403` about 2FA, use a granular npm token with `Read and Write` + `Bypass 2FA`, then set it as `NPM_TOKEN`.
|
|
118
|
+
|
|
119
|
+
If the package is scoped and first publish fails for access reasons, verify scope ownership:
|
|
118
120
|
|
|
119
121
|
```bash
|
|
120
122
|
npm whoami
|
|
121
|
-
npm access
|
|
123
|
+
npm access list packages <your-npm-id>
|
|
122
124
|
```
|
|
123
125
|
|
|
126
|
+
For automated tag-based publishing via GitHub Actions, set repository secret `NPM_TOKEN` (granular token with publish permission).
|
|
127
|
+
|
|
124
128
|
## License
|
|
125
129
|
|
|
126
130
|
MIT
|