@code0123/opencode-ai 1.1.55 → 1.1.57
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 +2 -2
- package/postinstall.mjs +2 -2
package/package.json
CHANGED
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
"scripts": {
|
|
7
7
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
8
8
|
},
|
|
9
|
-
"version": "1.1.
|
|
9
|
+
"version": "1.1.57",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"@code0123/opencode-android-arm64": "1.1.
|
|
12
|
+
"@code0123/opencode-android-arm64": "1.1.57"
|
|
13
13
|
},
|
|
14
14
|
"publishConfig": {
|
|
15
15
|
"access": "public"
|
package/postinstall.mjs
CHANGED
|
@@ -107,8 +107,8 @@ async function main() {
|
|
|
107
107
|
console.log(`Platform binary verified at: ${binaryPath}`)
|
|
108
108
|
console.log("Wrapper script will handle binary execution")
|
|
109
109
|
} catch (error) {
|
|
110
|
-
console.
|
|
111
|
-
|
|
110
|
+
console.warn("Skipping opencode binary setup:", error.message)
|
|
111
|
+
console.warn("You can install a platform package manually if needed and rerun opencode.")
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
114
|
|