@sejinjja/promise-pool-kit 0.1.6 → 0.1.8
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 +4 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -101,6 +101,8 @@ npm install
|
|
|
101
101
|
npm run check
|
|
102
102
|
```
|
|
103
103
|
|
|
104
|
+
`npm run check` also validates `CHANGELOG.md` heading format and version ordering.
|
|
105
|
+
|
|
104
106
|
## Open Source Workflow
|
|
105
107
|
|
|
106
108
|
1. Open an issue or discussion.
|
|
@@ -136,6 +138,8 @@ npm run release:patch
|
|
|
136
138
|
node scripts/release.mjs patch --push
|
|
137
139
|
```
|
|
138
140
|
|
|
141
|
+
`--push` mode is guarded to run only on the `main` branch.
|
|
142
|
+
|
|
139
143
|
## License
|
|
140
144
|
|
|
141
145
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sejinjja/promise-pool-kit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "A tiny TypeScript toolkit for retry, timeout, and controlled concurrency in async workloads.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
"typecheck": "tsc --noEmit",
|
|
26
26
|
"test": "vitest run",
|
|
27
27
|
"test:watch": "vitest",
|
|
28
|
-
"
|
|
28
|
+
"lint:changelog": "node scripts/validate-changelog.mjs",
|
|
29
|
+
"check": "npm run typecheck && npm run test && npm run build && npm run lint:changelog",
|
|
29
30
|
"release": "node scripts/release.mjs patch",
|
|
30
31
|
"release:patch": "node scripts/release.mjs patch",
|
|
31
32
|
"release:minor": "node scripts/release.mjs minor",
|