@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.
Files changed (2) hide show
  1. package/README.md +7 -3
  2. 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 first publish fails, verify your npm scope ownership:
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 ls-packages <your-npm-id>
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sejinjja/promise-pool-kit",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "A tiny TypeScript toolkit for retry, timeout, and controlled concurrency in async workloads.",
5
5
  "license": "MIT",
6
6
  "type": "module",