bravecode-cli 0.1.21 → 0.1.23

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/cli.cjs CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env bun
2
2
  /* CJS bootstrap wrapper for bravecode CLI.
3
3
  *
4
4
  * Why a separate CJS wrapper?
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bravecode-cli",
3
- "version": "0.1.21",
3
+ "version": "0.1.23",
4
4
  "description": "Agentic AI vibe coding CLI with free model support",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/scripts/build.js CHANGED
@@ -88,7 +88,7 @@ const __dirname = dirname(fileURLToPath(import.meta.url));
88
88
  const distDir = join(__dirname, "..", "dist");
89
89
  if (!existsSync(distDir)) mkdirSync(distDir, { recursive: true });
90
90
 
91
- const cjsWrapper = `#!/usr/bin/env node
91
+ const cjsWrapper = `#!/usr/bin/env bun
92
92
  /* CJS bootstrap wrapper for bravecode CLI.
93
93
  *
94
94
  * Why a separate CJS wrapper?