@context-action/core 0.8.6 → 0.8.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 +23 -10
- package/dist/index.cjs +685 -201
- package/dist/index.d.cts +67 -18
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.ts +67 -18
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +681 -202
- package/dist/index.js.map +1 -1
- package/package.json +17 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@context-action/core",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Type-safe action pipeline management library for JavaScript/TypeScript",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
"files": [
|
|
22
22
|
"dist",
|
|
23
23
|
"README.md",
|
|
24
|
-
"README.ko.md",
|
|
25
24
|
"LICENSE"
|
|
26
25
|
],
|
|
27
26
|
"scripts": {
|
|
@@ -31,9 +30,11 @@
|
|
|
31
30
|
"test:watch": "jest --watch",
|
|
32
31
|
"test:coverage": "jest --coverage",
|
|
33
32
|
"test:ci": "jest --ci --coverage --maxWorkers=2",
|
|
34
|
-
"lint": "
|
|
35
|
-
"lint:fix": "
|
|
36
|
-
"type-check": "tsc --noEmit",
|
|
33
|
+
"lint": "pnpm --workspace-root exec biome lint packages/core/src",
|
|
34
|
+
"lint:fix": "pnpm --workspace-root exec biome lint --write packages/core/src",
|
|
35
|
+
"type-check:src": "tsc --noEmit",
|
|
36
|
+
"test:type-check": "tsc -p __tests__/tsconfig.json --pretty false",
|
|
37
|
+
"type-check": "pnpm run type-check:src && pnpm run test:type-check",
|
|
37
38
|
"clean": "rimraf dist coverage",
|
|
38
39
|
"security:audit": "pnpm audit --audit-level high",
|
|
39
40
|
"security:outdated": "pnpm outdated",
|
|
@@ -63,7 +64,7 @@
|
|
|
63
64
|
"access": "public"
|
|
64
65
|
},
|
|
65
66
|
"peerDependencies": {
|
|
66
|
-
"zod": "^4.
|
|
67
|
+
"zod": "^4.4.3"
|
|
67
68
|
},
|
|
68
69
|
"peerDependenciesMeta": {
|
|
69
70
|
"zod": {
|
|
@@ -71,21 +72,20 @@
|
|
|
71
72
|
}
|
|
72
73
|
},
|
|
73
74
|
"devDependencies": {
|
|
74
|
-
"@
|
|
75
|
+
"@swc/core": "1.15.43",
|
|
76
|
+
"@swc/helpers": "0.5.23",
|
|
77
|
+
"@swc/jest": "0.2.39",
|
|
75
78
|
"@types/jest": "^30.0.0",
|
|
76
|
-
"@
|
|
77
|
-
"
|
|
78
|
-
"eslint": "^9.34.0",
|
|
79
|
-
"jest": "^30.3.0",
|
|
79
|
+
"@types/node": "24.13.3",
|
|
80
|
+
"jest": "30.4.2",
|
|
80
81
|
"rimraf": "^6.1.3",
|
|
81
|
-
"
|
|
82
|
-
"tsdown": "^0.14.2",
|
|
82
|
+
"tsdown": "0.22.5",
|
|
83
83
|
"tslib": "^2.8.1",
|
|
84
|
-
"typescript": "
|
|
85
|
-
"zod": "^4.3
|
|
84
|
+
"typescript": "6.0.3",
|
|
85
|
+
"zod": "^4.4.3"
|
|
86
86
|
},
|
|
87
87
|
"engines": {
|
|
88
|
-
"node": ">=
|
|
88
|
+
"node": ">=24.11.0"
|
|
89
89
|
},
|
|
90
90
|
"browser": {
|
|
91
91
|
"node:module": false,
|
|
@@ -101,5 +101,5 @@
|
|
|
101
101
|
"not dead",
|
|
102
102
|
"not ie 11"
|
|
103
103
|
],
|
|
104
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "6f50c9758cc9b21257a18a074b7e05eed96e855f"
|
|
105
105
|
}
|