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