apex-dev 3.10.8 → 3.10.9

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 +1 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -1,5 +1,4 @@
1
- #!/usr/bin/env bun
2
- #!/usr/bin/env bun
1
+ #!/usr/bin/env node
3
2
  // @bun
4
3
  var __create = Object.create;
5
4
  var __getProtoOf = Object.getPrototypeOf;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apex-dev",
3
- "version": "3.10.8",
3
+ "version": "3.10.9",
4
4
  "description": "Apex AI - a friendly agentic coding assistant for the terminal",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -10,7 +10,7 @@
10
10
  "dist/"
11
11
  ],
12
12
  "scripts": {
13
- "build": "NODE_ENV=production bun build apex.mjs --target=bun --outfile=dist/index.js --packages=external && sed -i '1s/^/#!\\/usr\\/bin\\/env bun\\n/' dist/index.js",
13
+ "build": "NODE_ENV=production bun build apex.mjs --target=bun --outfile=dist/index.js --packages=external && sed -i '1s/.*/#!\\/usr\\/bin\\/env node/' dist/index.js",
14
14
  "prepack": "npm run build",
15
15
  "start": "bun apex.mjs",
16
16
  "test": "echo \"Error: no test specified\" && exit 1"