claudekit-cli 3.36.0-dev.32 → 3.36.0-dev.33

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/dist/index.js +2 -4
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -1,5 +1,3 @@
1
- #!/usr/bin/env bun
2
- // @bun
3
1
  import { createRequire } from "node:module";
4
2
  var __create = Object.create;
5
3
  var __getProtoOf = Object.getPrototypeOf;
@@ -56630,7 +56628,7 @@ var package_default;
56630
56628
  var init_package = __esm(() => {
56631
56629
  package_default = {
56632
56630
  name: "claudekit-cli",
56633
- version: "3.36.0-dev.32",
56631
+ version: "3.36.0-dev.33",
56634
56632
  description: "CLI tool for bootstrapping and updating ClaudeKit projects",
56635
56633
  type: "module",
56636
56634
  repository: {
@@ -56654,7 +56652,7 @@ var init_package = __esm(() => {
56654
56652
  "dashboard:dev": "cd src/ui && bun install --silent && cd ../.. && bun run src/index.ts config ui --dev",
56655
56653
  "ui:build": "cd src/ui && bun install --silent && bun run build",
56656
56654
  "ui:dev": "cd src/ui && bun run dev",
56657
- build: "bun build src/index.ts --outdir dist --target node --external @octokit/rest",
56655
+ build: `bun build src/index.ts --outdir dist --target node --external @octokit/rest && node -e "const fs=require('fs'),f='dist/index.js',c=fs.readFileSync(f,'utf-8');fs.writeFileSync(f,c.replace(/^#!.*\\n\\/\\/ @bun\\n/,''))"`,
56658
56656
  compile: "bun run ui:build && bun run scripts/compile-binary.ts",
56659
56657
  "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'",
56660
56658
  "compile:binaries": "node scripts/build-all-binaries.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudekit-cli",
3
- "version": "3.36.0-dev.32",
3
+ "version": "3.36.0-dev.33",
4
4
  "description": "CLI tool for bootstrapping and updating ClaudeKit projects",
5
5
  "type": "module",
6
6
  "repository": {
@@ -24,7 +24,7 @@
24
24
  "dashboard:dev": "cd src/ui && bun install --silent && cd ../.. && bun run src/index.ts config ui --dev",
25
25
  "ui:build": "cd src/ui && bun install --silent && bun run build",
26
26
  "ui:dev": "cd src/ui && bun run dev",
27
- "build": "bun build src/index.ts --outdir dist --target node --external @octokit/rest",
27
+ "build": "bun build src/index.ts --outdir dist --target node --external @octokit/rest && node -e \"const fs=require('fs'),f='dist/index.js',c=fs.readFileSync(f,'utf-8');fs.writeFileSync(f,c.replace(/^#!.*\\n\\/\\/ @bun\\n/,''))\"",
28
28
  "compile": "bun run ui:build && bun run scripts/compile-binary.ts",
29
29
  "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
30
  "compile:binaries": "node scripts/build-all-binaries.js",