We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0377cfd commit 6527a12Copy full SHA for 6527a12
2 files changed
.github/workflows/snapshot.yml
@@ -4,7 +4,7 @@ on:
4
push:
5
branches:
6
- dev
7
- - windows
+ - fix-build
8
- v0
9
10
concurrency: ${{ github.workflow }}-${{ github.ref }}
packages/opencode/script/build.ts
@@ -1,6 +1,5 @@
1
#!/usr/bin/env bun
2
3
-import solidPlugin from "../node_modules/@opentui/solid/scripts/solid-plugin"
import path from "path"
import fs from "fs"
import { $ } from "bun"
@@ -10,6 +9,9 @@ const __filename = fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)
11
const dir = path.resolve(__dirname, "..")
12
+const solidPluginPath = path.resolve(dir, "node_modules/@opentui/solid/scripts/solid-plugin.ts")
13
+const solidPlugin = (await import(solidPluginPath)).default
14
+
15
process.chdir(dir)
16
17
import pkg from "../package.json"
0 commit comments