summaryrefslogtreecommitdiffhomepage
path: root/nix/bundle.ts
diff options
context:
space:
mode:
Diffstat (limited to 'nix/bundle.ts')
-rw-r--r--nix/bundle.ts40
1 files changed, 0 insertions, 40 deletions
diff --git a/nix/bundle.ts b/nix/bundle.ts
deleted file mode 100644
index effb1dff7..000000000
--- a/nix/bundle.ts
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/usr/bin/env bun
-
-import solidPlugin from "./node_modules/@opentui/solid/scripts/solid-plugin"
-import path from "path"
-import fs from "fs"
-
-const dir = process.cwd()
-const parser = fs.realpathSync(path.join(dir, "node_modules/@opentui/core/parser.worker.js"))
-const worker = "./src/cli/cmd/tui/worker.ts"
-const version = process.env.OPENCODE_VERSION ?? "local"
-const channel = process.env.OPENCODE_CHANNEL ?? "local"
-
-fs.rmSync(path.join(dir, "dist"), { recursive: true, force: true })
-
-const result = await Bun.build({
- entrypoints: ["./src/index.ts", worker, parser],
- outdir: "./dist",
- target: "bun",
- sourcemap: "none",
- tsconfig: "./tsconfig.json",
- plugins: [solidPlugin],
- external: ["@opentui/core"],
- define: {
- OPENCODE_VERSION: `'${version}'`,
- OPENCODE_CHANNEL: `'${channel}'`,
- // Leave undefined so runtime picks bundled/dist worker or fallback in code.
- OPENCODE_WORKER_PATH: "undefined",
- OTUI_TREE_SITTER_WORKER_PATH: 'new URL("./cli/cmd/tui/parser.worker.js", import.meta.url).href',
- },
-})
-
-if (!result.success) {
- console.error("bundle failed")
- for (const log of result.logs) console.error(log)
- process.exit(1)
-}
-
-const parserOut = path.join(dir, "dist/src/cli/cmd/tui/parser.worker.js")
-fs.mkdirSync(path.dirname(parserOut), { recursive: true })
-await Bun.write(parserOut, Bun.file(parser))