claudekit-cli 3.36.0-dev.35 → 3.36.0-dev.36
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/dist/index.js +6 -1
- package/package.json +6 -1
package/dist/index.js
CHANGED
|
@@ -56639,7 +56639,7 @@ var package_default;
|
|
|
56639
56639
|
var init_package = __esm(() => {
|
|
56640
56640
|
package_default = {
|
|
56641
56641
|
name: "claudekit-cli",
|
|
56642
|
-
version: "3.36.0-dev.
|
|
56642
|
+
version: "3.36.0-dev.36",
|
|
56643
56643
|
description: "CLI tool for bootstrapping and updating ClaudeKit projects",
|
|
56644
56644
|
type: "module",
|
|
56645
56645
|
repository: {
|
|
@@ -56655,6 +56655,10 @@ var init_package = __esm(() => {
|
|
|
56655
56655
|
},
|
|
56656
56656
|
files: [
|
|
56657
56657
|
"bin/ck.js",
|
|
56658
|
+
"bin/ck-linux-x64",
|
|
56659
|
+
"bin/ck-darwin-arm64",
|
|
56660
|
+
"bin/ck-darwin-x64",
|
|
56661
|
+
"bin/ck-win32-x64.exe",
|
|
56658
56662
|
"dist/index.js",
|
|
56659
56663
|
"dist/ui/"
|
|
56660
56664
|
],
|
|
@@ -56668,6 +56672,7 @@ var init_package = __esm(() => {
|
|
|
56668
56672
|
"compile:binary": "bun run ui:build && bun run scripts/compile-binary.ts --outfile bin/ck && cp bin/ck /usr/local/bin/ck && echo '✅ Installed globally: /usr/local/bin/ck'",
|
|
56669
56673
|
"compile:binaries": "node scripts/build-all-binaries.js",
|
|
56670
56674
|
"check-version-sync": "node scripts/check-binary-version-sync.js",
|
|
56675
|
+
"verify:package": "node scripts/prepublish-check.js",
|
|
56671
56676
|
"build:platform-binaries": "bun run scripts/build-platform-binaries.js",
|
|
56672
56677
|
test: "bun test",
|
|
56673
56678
|
"test:integration": "CK_RUN_CLI_INTEGRATION=1 bun test tests/integration/cli.test.ts",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claudekit-cli",
|
|
3
|
-
"version": "3.36.0-dev.
|
|
3
|
+
"version": "3.36.0-dev.36",
|
|
4
4
|
"description": "CLI tool for bootstrapping and updating ClaudeKit projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -16,6 +16,10 @@
|
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
18
|
"bin/ck.js",
|
|
19
|
+
"bin/ck-linux-x64",
|
|
20
|
+
"bin/ck-darwin-arm64",
|
|
21
|
+
"bin/ck-darwin-x64",
|
|
22
|
+
"bin/ck-win32-x64.exe",
|
|
19
23
|
"dist/index.js",
|
|
20
24
|
"dist/ui/"
|
|
21
25
|
],
|
|
@@ -29,6 +33,7 @@
|
|
|
29
33
|
"compile:binary": "bun run ui:build && bun run scripts/compile-binary.ts --outfile bin/ck && cp bin/ck /usr/local/bin/ck && echo '✅ Installed globally: /usr/local/bin/ck'",
|
|
30
34
|
"compile:binaries": "node scripts/build-all-binaries.js",
|
|
31
35
|
"check-version-sync": "node scripts/check-binary-version-sync.js",
|
|
36
|
+
"verify:package": "node scripts/prepublish-check.js",
|
|
32
37
|
"build:platform-binaries": "bun run scripts/build-platform-binaries.js",
|
|
33
38
|
"test": "bun test",
|
|
34
39
|
"test:integration": "CK_RUN_CLI_INTEGRATION=1 bun test tests/integration/cli.test.ts",
|