@adhd/apigen-base-errors 0.1.6 → 0.2.1
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/CHANGELOG.md +26 -0
- package/package.json +18 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
## 0.2.1 (2026-09-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **apigen-cli:** restore 2768 files mass-deleted by 0117eb22 (BUG-APIGEN-052)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- parity-harness-self-test
|
|
12
|
+
- pseudosky
|
|
13
|
+
- Sky
|
|
14
|
+
|
|
15
|
+
## 0.1.6 (2026-07-25)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### 🔥 Performance
|
|
19
|
+
|
|
20
|
+
- **test:** bound vitest thread pools to curb CPU oversubscription (DEBT-TEST-CPU-OVERSUBSCRIBED-001)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### ❤️ Thank You
|
|
24
|
+
|
|
25
|
+
- pseudosky
|
|
26
|
+
|
|
1
27
|
## 0.1.5 (2026-07-24)
|
|
2
28
|
|
|
3
29
|
This was a version bump only for apigen-base-errors to align it with other projects, there were no code changes.
|
package/package.json
CHANGED
|
@@ -1,10 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adhd/apigen-base-errors",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"main": "./index.js",
|
|
5
5
|
"module": "./index.mjs",
|
|
6
6
|
"typings": "./index.d.ts",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public"
|
|
9
|
+
},
|
|
10
|
+
"description": "Error types for the apigen code-first API generation engine",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"api",
|
|
13
|
+
"errors",
|
|
14
|
+
"codegen",
|
|
15
|
+
"typescript"
|
|
16
|
+
],
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/PseudoSky/adhd.git",
|
|
21
|
+
"directory": "packages/apigen/apigen-base-errors"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://github.com/PseudoSky/adhd/tree/main/packages/apigen/apigen-base-errors#readme",
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/PseudoSky/adhd/issues"
|
|
9
26
|
}
|
|
10
27
|
}
|