| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- #!/usr/bin/env bun
- import solidPlugin from "./solid-plugin"
- import path from "path"
- import { $ } from "bun"
- import { fileURLToPath } from "url"
- import { createRequire } from "module"
- const __filename = fileURLToPath(import.meta.url)
- const __dirname = path.dirname(__filename)
- const require = createRequire(import.meta.url)
- const dir = path.resolve(__dirname, "..")
- process.chdir(dir)
- import pkg from "../package.json"
- import { Script } from "@opencode-ai/script"
- import fs from "fs/promises"
- import nodefs from "fs"
- await $`bun run build:webgui`
- const webGuiDir = path.join(dir, "webgui-dist")
- const embedOutput = path.join(dir, "src/webgui/embed.generated.ts")
- async function listWebGuiFiles(current: string) {
- const entries = await fs.readdir(current, { withFileTypes: true })
- const files: { path: string; data: string }[] = []
- for (const entry of entries) {
- const absolute = path.join(current, entry.name)
- if (entry.isDirectory()) {
- const nested = await listWebGuiFiles(absolute)
- files.push(...nested)
- continue
- }
- const relative = path.relative(webGuiDir, absolute).split(path.sep).join("/")
- const file = Bun.file(absolute)
- const buffer = Buffer.from(await file.arrayBuffer())
- files.push({ path: relative, data: buffer.toString("base64") })
- }
- return files
- }
- async function generateEmbeddedWebGui() {
- const indexFile = Bun.file(path.join(webGuiDir, "index.html"))
- if (!(await indexFile.exists())) {
- await Bun.write(embedOutput, "export const embeddedWebGui = [] as const\n")
- return
- }
- const items = await listWebGuiFiles(webGuiDir)
- const lines = [
- "export const embeddedWebGui = [",
- ...items.map((item) => ` { path: ${JSON.stringify(item.path)}, data: ${JSON.stringify(item.data)} },`),
- "] as const",
- "",
- ]
- await Bun.write(embedOutput, lines.join("\n"))
- }
- await generateEmbeddedWebGui()
- const singleFlag = process.argv.includes("--single")
- const allTargets: {
- os: string
- arch: "arm64" | "x64"
- abi?: "musl"
- avx2?: false
- }[] = [
- {
- os: "linux",
- arch: "arm64",
- },
- {
- os: "linux",
- arch: "x64",
- },
- {
- os: "darwin",
- arch: "arm64",
- },
- {
- os: "darwin",
- arch: "x64",
- },
- {
- os: "win32",
- arch: "x64",
- },
- ]
- const targets = singleFlag
- ? allTargets.filter((item) => item.os === process.platform && item.arch === process.arch)
- : allTargets
- await fs.rm("dist", { recursive: true, force: true })
- const binaries: Record<string, string> = {}
- await $`bun install --os="*" --cpu="*" @opentui/core@${pkg.dependencies["@opentui/core"]}`
- await $`bun install --os="*" --cpu="*" @parcel/watcher@${pkg.dependencies["@parcel/watcher"]}`
- for (const item of targets) {
- const name = [
- pkg.name,
- // changing to win32 flags npm for some reason
- item.os === "win32" ? "windows" : item.os,
- item.arch,
- item.avx2 === false ? "baseline" : undefined,
- item.abi === undefined ? undefined : item.abi,
- ]
- .filter(Boolean)
- .join("-")
- console.log(`building ${name}`)
- await fs.mkdir(`dist/${name}/bin`, { recursive: true })
- const opentuiCoreEntry = require.resolve("@opentui/core")
- const parserWorker = nodefs.realpathSync(path.join(path.dirname(opentuiCoreEntry), "parser.worker.js"))
- const workerPath = "./src/cli/cmd/tui/worker.ts"
- await Bun.build({
- conditions: ["browser"],
- tsconfig: "./tsconfig.json",
- plugins: [solidPlugin],
- sourcemap: "external",
- compile: {
- target: name.replace(pkg.name, "bun") as any,
- outfile: `dist/${name}/bin/opencode`,
- execArgv: [`--user-agent=opencode/${Script.version}`, `--env-file=""`, `--`],
- windows: {},
- },
- entrypoints: ["./src/index.ts", parserWorker, workerPath],
- define: {
- OPENCODE_VERSION: `'${Script.version}'`,
- OTUI_TREE_SITTER_WORKER_PATH: "/$bunfs/root/" + path.relative(dir, parserWorker).replaceAll("\\", "/"),
- OPENCODE_WORKER_PATH: workerPath,
- OPENCODE_CHANNEL: `'${Script.channel}'`,
- },
- })
- await fs.rm(`./dist/${name}/bin/tui`, { recursive: true, force: true })
- await Bun.file(`dist/${name}/package.json`).write(
- JSON.stringify(
- {
- name,
- version: Script.version,
- os: [item.os],
- cpu: [item.arch],
- },
- null,
- 2,
- ),
- )
- binaries[name] = Script.version
- }
- export { binaries }
|