coderaft 0.0.22 → 0.0.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.
@@ -9,8 +9,6 @@
9
9
  // is not enough — we must monkey-patch child_process.spawn to re-inject it.
10
10
  "use strict";
11
11
 
12
- Object.defineProperty(process, "platform", { value: "linux" });
13
-
14
12
  // Fix process.execPath when termux-exec is unavailable
15
13
  const execPath = process.execPath;
16
14
  if (execPath.includes("linker64") || execPath.startsWith("/apex/")) {
package/code.mjs CHANGED
@@ -4,7 +4,7 @@ import { tmpdir } from "node:os";
4
4
  import { fileURLToPath } from "node:url";
5
5
 
6
6
  // Auto-updated by scripts/pack.ts
7
- const codeArchiveHash = "dce8c0124a390d8d";
7
+ const codeArchiveHash = "4578b0a8f19e8531";
8
8
 
9
9
  const archivePath = fileURLToPath(new URL("./code.tar.zst", import.meta.url));
10
10
 
package/code.tar.zst CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coderaft",
3
- "version": "0.0.22",
3
+ "version": "0.0.23",
4
4
  "repository": "pithings/coderaft",
5
5
  "bin": {
6
6
  "coderaft": "./dist/cli.mjs"