nikcli-ai 1.299.0 → 1.301.0
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/package.json +9 -13
- package/postinstall.mjs +4 -0
package/package.json
CHANGED
|
@@ -6,19 +6,15 @@
|
|
|
6
6
|
"scripts": {
|
|
7
7
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
8
8
|
},
|
|
9
|
-
"version": "1.
|
|
9
|
+
"version": "1.301.0",
|
|
10
10
|
"optionalDependencies": {
|
|
11
|
-
"nikcli-ai-linux-arm64": "1.
|
|
12
|
-
"nikcli-ai-linux-x64": "1.
|
|
13
|
-
"nikcli-ai-linux-
|
|
14
|
-
"nikcli-ai-linux-
|
|
15
|
-
"nikcli-ai-
|
|
16
|
-
"nikcli-ai-
|
|
17
|
-
"nikcli-ai-
|
|
18
|
-
"nikcli-ai-
|
|
19
|
-
"nikcli-ai-darwin-x64-baseline": "1.299.0",
|
|
20
|
-
"nikcli-ai-windows-arm64": "1.299.0",
|
|
21
|
-
"nikcli-ai-windows-x64": "1.299.0",
|
|
22
|
-
"nikcli-ai-windows-x64-baseline": "1.299.0"
|
|
11
|
+
"nikcli-ai-linux-arm64": "1.301.0",
|
|
12
|
+
"nikcli-ai-linux-x64": "1.301.0",
|
|
13
|
+
"nikcli-ai-linux-arm64-musl": "1.301.0",
|
|
14
|
+
"nikcli-ai-linux-x64-musl": "1.301.0",
|
|
15
|
+
"nikcli-ai-darwin-arm64": "1.301.0",
|
|
16
|
+
"nikcli-ai-darwin-x64": "1.301.0",
|
|
17
|
+
"nikcli-ai-windows-arm64": "1.301.0",
|
|
18
|
+
"nikcli-ai-windows-x64": "1.301.0"
|
|
23
19
|
}
|
|
24
20
|
}
|
package/postinstall.mjs
CHANGED
|
@@ -105,6 +105,10 @@ function isMusl() {
|
|
|
105
105
|
// Ordered best → worst. A baseline binary runs on an AVX2 machine (just slower),
|
|
106
106
|
// so it stays in the list as a fallback; the reverse is a SIGILL crash, which is
|
|
107
107
|
// why the baseline probe must be right on every platform.
|
|
108
|
+
// Since Bun 1.4 the x64 build is itself baseline and no `-baseline` package is
|
|
109
|
+
// published any more, so those names only ever resolve for releases <= 1.299.0.
|
|
110
|
+
// They stay in the list for exactly that reason — a missing name is skipped, and
|
|
111
|
+
// the plain x64 package the list falls through to is safe on every CPU.
|
|
108
112
|
function packageNames() {
|
|
109
113
|
const baseline = arch === "x64" && !supportsAvx2()
|
|
110
114
|
|