@sejinjja/promise-pool-kit 0.1.7 → 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 +2 -0
- package/package.json +3 -2
package/README.md
CHANGED
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",
|