Skip to content

Commit e464999

Browse files
authored
upgrade opentui to 0.3.2 (anomalyco#30748)
1 parent cc9b73b commit e464999

5 files changed

Lines changed: 28 additions & 22 deletions

File tree

bun.lock

Lines changed: 19 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bunfig.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
exact = true
33
# Only install newly resolved package versions published at least 3 days ago.
44
minimumReleaseAge = 259200
5-
minimumReleaseAgeExcludes = ["@ai-sdk/amazon-bedrock", "@opentui/core", "@opentui/core-darwin-arm64", "@opentui/core-darwin-x64", "@opentui/core-linux-arm64", "@opentui/core-linux-x64", "@opentui/core-win32-arm64", "@opentui/core-win32-x64", "@opentui/keymap", "@opentui/solid", "gitlab-ai-provider"]
5+
minimumReleaseAgeExcludes = ["@ai-sdk/amazon-bedrock", "@opentui/core", "@opentui/core-darwin-arm64", "@opentui/core-darwin-x64", "@opentui/core-linux-arm64", "@opentui/core-linux-arm64-musl", "@opentui/core-linux-x64", "@opentui/core-linux-x64-musl", "@opentui/core-win32-arm64", "@opentui/core-win32-x64", "@opentui/keymap", "@opentui/solid", "gitlab-ai-provider"]
66

77
[test]
88
root = "./do-not-run-tests-from-root"

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
"@octokit/rest": "22.0.0",
4040
"@hono/standard-validator": "0.2.0",
4141
"@hono/zod-validator": "0.4.2",
42-
"@opentui/core": "0.3.1",
43-
"@opentui/keymap": "0.3.1",
44-
"@opentui/solid": "0.3.1",
42+
"@opentui/core": "0.3.2",
43+
"@opentui/keymap": "0.3.2",
44+
"@opentui/solid": "0.3.2",
4545
"ulid": "3.0.1",
4646
"@kobalte/core": "0.13.11",
4747
"@types/luxon": "3.7.1",

packages/opencode/script/build.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ for (const item of targets) {
192192
OPENCODE_WORKER_PATH: workerPath,
193193
OPENCODE_CHANNEL: `'${Script.channel}'`,
194194
OPENCODE_LIBC: item.os === "linux" ? `'${item.abi ?? "glibc"}'` : "",
195+
...(item.os === "linux" ? { "process.env.OPENTUI_LIBC": JSON.stringify(item.abi ?? "glibc") } : {}),
195196
},
196197
})
197198

@@ -217,6 +218,7 @@ for (const item of targets) {
217218
preferUnplugged: true,
218219
os: [item.os],
219220
cpu: [item.arch],
221+
...(item.abi ? { libc: [item.abi] } : {}),
220222
},
221223
null,
222224
2,

packages/plugin/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
"zod": "catalog:"
2323
},
2424
"peerDependencies": {
25-
"@opentui/core": ">=0.3.1",
26-
"@opentui/keymap": ">=0.3.1",
27-
"@opentui/solid": ">=0.3.1"
25+
"@opentui/core": ">=0.3.2",
26+
"@opentui/keymap": ">=0.3.2",
27+
"@opentui/solid": ">=0.3.2"
2828
},
2929
"peerDependenciesMeta": {
3030
"@opentui/core": {

0 commit comments

Comments
 (0)