@theokit/cli 4.0.0 → 4.0.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 +18 -0
- package/dist/bin/theokit.cjs +2 -2
- package/dist/bin/theokit.js +2 -2
- package/dist/index.cjs +2 -2
- package/dist/index.js +2 -2
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 4.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5f048cf: Drops `zod` from the CLI's dependencies. Nothing in the package imported it — `eval.config`
|
|
8
|
+
validation is three hand-written checks, and the source already said so in a comment. Scaffolded
|
|
9
|
+
templates that use zod declare their own pin, so `theokit init` is unaffected.
|
|
10
|
+
|
|
11
|
+
It stayed hidden because the dead-dependency check counted it as satisfying the SDK's zod peer
|
|
12
|
+
requirement. Once the SDK declared zod itself (#399), nothing was left claiming this one, and it
|
|
13
|
+
surfaced immediately. Verified by removing it: the CLI typechecks and all 216 tests pass.
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [18a68a0]
|
|
16
|
+
- Updated dependencies [43e4247]
|
|
17
|
+
- Updated dependencies [b85dab4]
|
|
18
|
+
- Updated dependencies [4565e43]
|
|
19
|
+
- @theokit/sdk@4.57.0
|
|
20
|
+
|
|
3
21
|
## 4.0.0
|
|
4
22
|
|
|
5
23
|
### Major Changes
|
package/dist/bin/theokit.cjs
CHANGED
|
@@ -651,8 +651,8 @@ ${pc5__default.default.green("\u2713")} ${result.aggregate.totalRows} rows \xB7
|
|
|
651
651
|
}
|
|
652
652
|
|
|
653
653
|
// src/version.ts
|
|
654
|
-
var SDK_VERSION = "4.
|
|
655
|
-
var CLI_VERSION = "4.0.
|
|
654
|
+
var SDK_VERSION = "4.57.0";
|
|
655
|
+
var CLI_VERSION = "4.0.1";
|
|
656
656
|
|
|
657
657
|
// src/init/templates.ts
|
|
658
658
|
var TEMPLATES = [
|
package/dist/bin/theokit.js
CHANGED
|
@@ -625,8 +625,8 @@ ${pc5.green("\u2713")} ${result.aggregate.totalRows} rows \xB7 mean score ${resu
|
|
|
625
625
|
}
|
|
626
626
|
|
|
627
627
|
// src/version.ts
|
|
628
|
-
var SDK_VERSION = "4.
|
|
629
|
-
var CLI_VERSION = "4.0.
|
|
628
|
+
var SDK_VERSION = "4.57.0";
|
|
629
|
+
var CLI_VERSION = "4.0.1";
|
|
630
630
|
|
|
631
631
|
// src/init/templates.ts
|
|
632
632
|
var TEMPLATES = [
|
package/dist/index.cjs
CHANGED
|
@@ -651,8 +651,8 @@ ${pc5__default.default.green("\u2713")} ${result.aggregate.totalRows} rows \xB7
|
|
|
651
651
|
}
|
|
652
652
|
|
|
653
653
|
// src/version.ts
|
|
654
|
-
var SDK_VERSION = "4.
|
|
655
|
-
var CLI_VERSION = "4.0.
|
|
654
|
+
var SDK_VERSION = "4.57.0";
|
|
655
|
+
var CLI_VERSION = "4.0.1";
|
|
656
656
|
|
|
657
657
|
// src/init/templates.ts
|
|
658
658
|
var TEMPLATES = [
|
package/dist/index.js
CHANGED
|
@@ -625,8 +625,8 @@ ${pc5.green("\u2713")} ${result.aggregate.totalRows} rows \xB7 mean score ${resu
|
|
|
625
625
|
}
|
|
626
626
|
|
|
627
627
|
// src/version.ts
|
|
628
|
-
var SDK_VERSION = "4.
|
|
629
|
-
var CLI_VERSION = "4.0.
|
|
628
|
+
var SDK_VERSION = "4.57.0";
|
|
629
|
+
var CLI_VERSION = "4.0.1";
|
|
630
630
|
|
|
631
631
|
// src/init/templates.ts
|
|
632
632
|
var TEMPLATES = [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theokit/cli",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "Developer CLI for @theokit/sdk — init, dev, inspect, eval. Adoption Roadmap #1.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/usetheokit/theokit-sdk#readme",
|
|
@@ -46,8 +46,7 @@
|
|
|
46
46
|
"commander": "^12.1.0",
|
|
47
47
|
"picocolors": "^1.0.0",
|
|
48
48
|
"tsx": "^4.19.0",
|
|
49
|
-
"
|
|
50
|
-
"@theokit/sdk": "^4.54.0"
|
|
49
|
+
"@theokit/sdk": "^4.57.0"
|
|
51
50
|
},
|
|
52
51
|
"peerDependencies": {
|
|
53
52
|
"@theokit/acp": "^4.0.0"
|