@just-every/code 0.2.49 → 0.2.50

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/bin/coder.js +1 -1
  2. package/package.json +6 -6
package/bin/coder.js CHANGED
@@ -163,7 +163,7 @@ const httpsDownload = (url, dest) => new Promise((resolve, reject) => {
163
163
  });
164
164
  });
165
165
 
166
- const tryBootstrapBinary = () => {
166
+ const tryBootstrapBinary = async () => {
167
167
  try {
168
168
  // 1) Read our published version
169
169
  const pkg = JSON.parse(readFileSync(path.join(__dirname, "..", "package.json"), "utf8"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@just-every/code",
3
- "version": "0.2.49",
3
+ "version": "0.2.50",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Lightweight coding agent that runs in your terminal - fork of OpenAI Codex",
6
6
  "bin": {
@@ -34,10 +34,10 @@
34
34
  "prettier": "^3.3.3"
35
35
  },
36
36
  "optionalDependencies": {
37
- "@just-every/code-darwin-arm64": "0.2.49",
38
- "@just-every/code-darwin-x64": "0.2.49",
39
- "@just-every/code-linux-x64-musl": "0.2.49",
40
- "@just-every/code-linux-arm64-musl": "0.2.49",
41
- "@just-every/code-win32-x64": "0.2.49"
37
+ "@just-every/code-darwin-arm64": "0.2.50",
38
+ "@just-every/code-darwin-x64": "0.2.50",
39
+ "@just-every/code-linux-x64-musl": "0.2.50",
40
+ "@just-every/code-linux-arm64-musl": "0.2.50",
41
+ "@just-every/code-win32-x64": "0.2.50"
42
42
  }
43
43
  }