@just-every/code 0.2.176 → 0.2.177
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/bin/codex.js +1 -1
- package/package.json +7 -7
package/bin/codex.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
// Unified entry point for the Codex CLI.
|
|
3
3
|
|
|
4
|
+
import { spawn } from "node:child_process";
|
|
4
5
|
import { existsSync } from "fs";
|
|
5
6
|
import path from "path";
|
|
6
7
|
import { fileURLToPath } from "url";
|
|
@@ -68,7 +69,6 @@ const binaryPath = path.join(archRoot, "codex", codexBinaryName);
|
|
|
68
69
|
// executing. This allows us to forward those signals to the child process
|
|
69
70
|
// and guarantees that when either the child terminates or the parent
|
|
70
71
|
// receives a fatal signal, both processes exit in a predictable manner.
|
|
71
|
-
const { spawn } = await import("child_process");
|
|
72
72
|
|
|
73
73
|
function getUpdatedPath(newDirs) {
|
|
74
74
|
const pathSep = process.platform === "win32" ? ";" : ":";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@just-every/code",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.177",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Lightweight coding agent that runs in your terminal - fork of OpenAI Codex",
|
|
6
6
|
"bin": {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"type": "module",
|
|
10
10
|
"engines": {
|
|
11
|
-
"node": ">=
|
|
11
|
+
"node": ">=16"
|
|
12
12
|
},
|
|
13
13
|
"files": [
|
|
14
14
|
"bin/coder.js",
|
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
"prettier": "^3.3.3"
|
|
36
36
|
},
|
|
37
37
|
"optionalDependencies": {
|
|
38
|
-
"@just-every/code-darwin-arm64": "0.2.
|
|
39
|
-
"@just-every/code-darwin-x64": "0.2.
|
|
40
|
-
"@just-every/code-linux-x64-musl": "0.2.
|
|
41
|
-
"@just-every/code-linux-arm64-musl": "0.2.
|
|
42
|
-
"@just-every/code-win32-x64": "0.2.
|
|
38
|
+
"@just-every/code-darwin-arm64": "0.2.177",
|
|
39
|
+
"@just-every/code-darwin-x64": "0.2.177",
|
|
40
|
+
"@just-every/code-linux-x64-musl": "0.2.177",
|
|
41
|
+
"@just-every/code-linux-arm64-musl": "0.2.177",
|
|
42
|
+
"@just-every/code-win32-x64": "0.2.177"
|
|
43
43
|
}
|
|
44
44
|
}
|