We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af0f40e commit 941ba7fCopy full SHA for 941ba7f
packages/opencode/script/build.ts
@@ -37,7 +37,7 @@ for (const [os, arch] of targets) {
37
38
const opentui = `@opentui/core-${os === "windows" ? "win32" : os}-${arch.replace("-baseline", "")}`
39
await $`mkdir -p ../../node_modules/${opentui}`
40
- await $`npm pack ${opentui}`.cwd(path.join(dir, "../../node_modules"))
+ await $`npm pack ${opentui}@${pkg.dependencies["@opentui/core"]}`.cwd(path.join(dir, "../../node_modules"))
41
await $`tar -xf ../../node_modules/${opentui.replace("@opentui/", "opentui-")}-*.tgz -C ../../node_modules/${opentui} --strip-components=1`
42
43
const watcher = `@parcel/watcher-${os === "windows" ? "win32" : os}-${arch.replace("-baseline", "")}${os === "linux" ? "-glibc" : ""}`
0 commit comments