@fabriccode/cli 7.0.42 → 7.0.43
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 +2 -2
package/bin/kilo
CHANGED
|
@@ -60,7 +60,7 @@ if (!arch) {
|
|
|
60
60
|
arch = os.arch()
|
|
61
61
|
}
|
|
62
62
|
const base = "@fabriccode/cli-" + platform + "-" + arch
|
|
63
|
-
const binary = platform === "windows" ? "
|
|
63
|
+
const binary = platform === "windows" ? "fabric.exe" : "fabric" // kilocode_change: binary is built as "fabric" not "kilo"
|
|
64
64
|
|
|
65
65
|
function supportsAvx2() {
|
|
66
66
|
if (arch !== "x64") return false
|
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.43",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"optionalDependencies": {
|
|
13
|
-
"@fabriccode/cli-linux-arm64
|
|
14
|
-
"@fabriccode/cli-linux-x64-
|
|
15
|
-
"@fabriccode/cli-
|
|
16
|
-
"@fabriccode/cli-linux-arm64": "7.0.
|
|
17
|
-
"@fabriccode/cli-
|
|
18
|
-
"@fabriccode/cli-linux-x64-baseline": "7.0.
|
|
19
|
-
"@fabriccode/cli-
|
|
20
|
-
"@fabriccode/cli-
|
|
21
|
-
"@fabriccode/cli-darwin-x64
|
|
22
|
-
"@fabriccode/cli-windows-x64-baseline": "7.0.
|
|
23
|
-
"@fabriccode/cli-linux-x64-
|
|
13
|
+
"@fabriccode/cli-linux-arm64": "7.0.43",
|
|
14
|
+
"@fabriccode/cli-linux-x64-musl": "7.0.43",
|
|
15
|
+
"@fabriccode/cli-darwin-arm64": "7.0.43",
|
|
16
|
+
"@fabriccode/cli-linux-arm64-musl": "7.0.43",
|
|
17
|
+
"@fabriccode/cli-windows-x64": "7.0.43",
|
|
18
|
+
"@fabriccode/cli-linux-x64-baseline-musl": "7.0.43",
|
|
19
|
+
"@fabriccode/cli-linux-x64": "7.0.43",
|
|
20
|
+
"@fabriccode/cli-darwin-x64-baseline": "7.0.43",
|
|
21
|
+
"@fabriccode/cli-darwin-x64": "7.0.43",
|
|
22
|
+
"@fabriccode/cli-windows-x64-baseline": "7.0.43",
|
|
23
|
+
"@fabriccode/cli-linux-x64-baseline": "7.0.43"
|
|
24
24
|
},
|
|
25
25
|
"repository": {
|
|
26
26
|
"type": "git",
|
package/postinstall.mjs
CHANGED
|
@@ -105,7 +105,7 @@ function getPackageNames() {
|
|
|
105
105
|
|
|
106
106
|
function findBinary() {
|
|
107
107
|
const { platform } = detectPlatformAndArch()
|
|
108
|
-
const binaryName = platform === "windows" ? "
|
|
108
|
+
const binaryName = platform === "windows" ? "fabric.exe" : "fabric" // kilocode_change: binary is built as "fabric" not "kilo"
|
|
109
109
|
const names = getPackageNames()
|
|
110
110
|
|
|
111
111
|
for (const packageName of names) {
|
|
@@ -147,6 +147,6 @@ function main() {
|
|
|
147
147
|
try {
|
|
148
148
|
main()
|
|
149
149
|
} catch (error) {
|
|
150
|
-
console.error("Failed to setup
|
|
150
|
+
console.error("Failed to setup fabric binary:", error.message) // kilocode_change
|
|
151
151
|
process.exit(1)
|
|
152
152
|
}
|