@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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. 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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sejinjja/promise-pool-kit",
3
- "version": "0.1.7",
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
- "check": "npm run typecheck && npm run test && npm run build",
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",