humancode 0.0.28 → 0.0.30

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/humancode +7 -0
  2. package/package.json +12 -12
package/bin/humancode CHANGED
@@ -146,6 +146,13 @@ const names = (() => {
146
146
  if (baseline) return [`${base}-baseline`, base]
147
147
  return [base, `${base}-baseline`]
148
148
  }
149
+
150
+ // Windows ARM64 can run x64 binaries via emulation — fall back to x64 variants
151
+ if (platform === "windows" && arch === "arm64") {
152
+ const x64Base = "humancode-windows-x64"
153
+ return [base, `${x64Base}-baseline`, x64Base]
154
+ }
155
+
149
156
  return [base]
150
157
  })()
151
158
 
package/package.json CHANGED
@@ -6,19 +6,19 @@
6
6
  "scripts": {
7
7
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
8
8
  },
9
- "version": "0.0.28",
9
+ "version": "0.0.30",
10
10
  "license": "MIT",
11
11
  "optionalDependencies": {
12
- "humancode-linux-x64-musl": "0.0.28",
13
- "humancode-darwin-x64": "0.0.28",
14
- "humancode-linux-arm64-musl": "0.0.28",
15
- "humancode-linux-arm64": "0.0.28",
16
- "humancode-darwin-arm64": "0.0.28",
17
- "humancode-darwin-x64-baseline": "0.0.28",
18
- "humancode-linux-x64": "0.0.28",
19
- "humancode-windows-x64": "0.0.28",
20
- "humancode-windows-x64-baseline": "0.0.28",
21
- "humancode-linux-x64-baseline-musl": "0.0.28",
22
- "humancode-linux-x64-baseline": "0.0.28"
12
+ "humancode-linux-x64-musl": "0.0.30",
13
+ "humancode-darwin-x64": "0.0.30",
14
+ "humancode-linux-arm64-musl": "0.0.30",
15
+ "humancode-linux-arm64": "0.0.30",
16
+ "humancode-darwin-arm64": "0.0.30",
17
+ "humancode-darwin-x64-baseline": "0.0.30",
18
+ "humancode-linux-x64": "0.0.30",
19
+ "humancode-windows-x64": "0.0.30",
20
+ "humancode-windows-x64-baseline": "0.0.30",
21
+ "humancode-linux-x64-baseline-musl": "0.0.30",
22
+ "humancode-linux-x64-baseline": "0.0.30"
23
23
  }
24
24
  }