ideavo-code 1.3.12-dev.1 → 1.3.12
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 +12 -12
- package/postinstall.mjs +2 -5
package/package.json
CHANGED
|
@@ -6,18 +6,18 @@
|
|
|
6
6
|
"scripts": {
|
|
7
7
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
8
8
|
},
|
|
9
|
-
"version": "1.3.12
|
|
9
|
+
"version": "1.3.12",
|
|
10
10
|
"optionalDependencies": {
|
|
11
|
-
"ideavo-code-linux-arm64": "1.3.12
|
|
12
|
-
"ideavo-code-linux-x64": "1.3.12
|
|
13
|
-
"ideavo-code-linux-x64-baseline": "1.3.12
|
|
14
|
-
"ideavo-code-linux-arm64-musl": "1.3.12
|
|
15
|
-
"ideavo-code-linux-x64-musl": "1.3.12
|
|
16
|
-
"ideavo-code-linux-x64-baseline-musl": "1.3.12
|
|
17
|
-
"ideavo-code-darwin-arm64": "1.3.12
|
|
18
|
-
"ideavo-code-darwin-x64": "1.3.12
|
|
19
|
-
"ideavo-code-darwin-x64-baseline": "1.3.12
|
|
20
|
-
"ideavo-code-windows-x64": "1.3.12
|
|
21
|
-
"ideavo-code-windows-x64-baseline": "1.3.12
|
|
11
|
+
"ideavo-code-linux-arm64": "1.3.12",
|
|
12
|
+
"ideavo-code-linux-x64": "1.3.12",
|
|
13
|
+
"ideavo-code-linux-x64-baseline": "1.3.12",
|
|
14
|
+
"ideavo-code-linux-arm64-musl": "1.3.12",
|
|
15
|
+
"ideavo-code-linux-x64-musl": "1.3.12",
|
|
16
|
+
"ideavo-code-linux-x64-baseline-musl": "1.3.12",
|
|
17
|
+
"ideavo-code-darwin-arm64": "1.3.12",
|
|
18
|
+
"ideavo-code-darwin-x64": "1.3.12",
|
|
19
|
+
"ideavo-code-darwin-x64-baseline": "1.3.12",
|
|
20
|
+
"ideavo-code-windows-x64": "1.3.12",
|
|
21
|
+
"ideavo-code-windows-x64-baseline": "1.3.12"
|
|
22
22
|
}
|
|
23
23
|
}
|
package/postinstall.mjs
CHANGED
|
@@ -106,11 +106,8 @@ async function main() {
|
|
|
106
106
|
return
|
|
107
107
|
}
|
|
108
108
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
const { binaryPath } = findBinary()
|
|
112
|
-
console.log(`Platform binary verified at: ${binaryPath}`)
|
|
113
|
-
console.log("Wrapper script will handle binary execution")
|
|
109
|
+
const { binaryPath, binaryName } = findBinary()
|
|
110
|
+
symlinkBinary(binaryPath, binaryName)
|
|
114
111
|
} catch (error) {
|
|
115
112
|
console.error("Failed to setup opencode binary:", error.message)
|
|
116
113
|
process.exit(1)
|