@fabriccode/cli 7.0.40 → 7.0.42
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/kilo +1 -1
- package/package.json +12 -12
- package/postinstall.mjs +1 -1
package/bin/kilo
CHANGED
|
@@ -59,7 +59,7 @@ let arch = archMap[os.arch()]
|
|
|
59
59
|
if (!arch) {
|
|
60
60
|
arch = os.arch()
|
|
61
61
|
}
|
|
62
|
-
const base = "@
|
|
62
|
+
const base = "@fabriccode/cli-" + platform + "-" + arch
|
|
63
63
|
const binary = platform === "windows" ? "kilo.exe" : "kilo"
|
|
64
64
|
|
|
65
65
|
function supportsAvx2() {
|
package/package.json
CHANGED
|
@@ -7,20 +7,20 @@
|
|
|
7
7
|
"scripts": {
|
|
8
8
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
9
9
|
},
|
|
10
|
-
"version": "7.0.
|
|
10
|
+
"version": "7.0.42",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"optionalDependencies": {
|
|
13
|
-
"@fabriccode/cli-linux-arm64-musl": "7.0.
|
|
14
|
-
"@fabriccode/cli-linux-x64-baseline-musl": "7.0.
|
|
15
|
-
"@fabriccode/cli-linux-x64": "7.0.
|
|
16
|
-
"@fabriccode/cli-linux-arm64": "7.0.
|
|
17
|
-
"@fabriccode/cli-darwin-arm64": "7.0.
|
|
18
|
-
"@fabriccode/cli-linux-x64-baseline": "7.0.
|
|
19
|
-
"@fabriccode/cli-darwin-x64": "7.0.
|
|
20
|
-
"@fabriccode/cli-windows-x64": "7.0.
|
|
21
|
-
"@fabriccode/cli-darwin-x64-baseline": "7.0.
|
|
22
|
-
"@fabriccode/cli-windows-x64-baseline": "7.0.
|
|
23
|
-
"@fabriccode/cli-linux-x64-musl": "7.0.
|
|
13
|
+
"@fabriccode/cli-linux-arm64-musl": "7.0.42",
|
|
14
|
+
"@fabriccode/cli-linux-x64-baseline-musl": "7.0.42",
|
|
15
|
+
"@fabriccode/cli-linux-x64": "7.0.42",
|
|
16
|
+
"@fabriccode/cli-linux-arm64": "7.0.42",
|
|
17
|
+
"@fabriccode/cli-darwin-arm64": "7.0.42",
|
|
18
|
+
"@fabriccode/cli-linux-x64-baseline": "7.0.42",
|
|
19
|
+
"@fabriccode/cli-darwin-x64": "7.0.42",
|
|
20
|
+
"@fabriccode/cli-windows-x64": "7.0.42",
|
|
21
|
+
"@fabriccode/cli-darwin-x64-baseline": "7.0.42",
|
|
22
|
+
"@fabriccode/cli-windows-x64-baseline": "7.0.42",
|
|
23
|
+
"@fabriccode/cli-linux-x64-musl": "7.0.42"
|
|
24
24
|
},
|
|
25
25
|
"repository": {
|
|
26
26
|
"type": "git",
|
package/postinstall.mjs
CHANGED
|
@@ -76,7 +76,7 @@ function isMusl() {
|
|
|
76
76
|
|
|
77
77
|
function getPackageNames() {
|
|
78
78
|
const { platform, arch } = detectPlatformAndArch()
|
|
79
|
-
const base = `@
|
|
79
|
+
const base = `@fabriccode/cli-${platform}-${arch}`
|
|
80
80
|
const avx2 = supportsAvx2()
|
|
81
81
|
const baseline = arch === "x64" && !avx2
|
|
82
82
|
|