We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6944c7b commit b6c9301Copy full SHA for b6c9301
2 files changed
scripts/build-debug.ts
@@ -0,0 +1,15 @@
1
+import consola from "consola"
2
+import spawn from "nano-spawn"
3
+
4
+const process = await spawn("bun", [
5
+ "build",
6
+ "./src/main.ts",
7
8
+ "--outfile",
9
+ "./dist/copilot-api-debug",
10
11
+ "--compile",
12
+ "--sourcemap",
13
+])
14
15
+consola.log(process.output)
scripts/build.ts
+ "./dist/copilot-api",
+ "--minify",
0 commit comments