fix(cli): limit source maps to development channels

This commit is contained in:
Dax Raad
2026-08-18 10:53:42 -04:00
parent c92fb2d41b
commit 8df039d261
+1 -1
View File
@@ -109,7 +109,7 @@ for (const item of targets) {
external: ["node-gyp"],
format: "esm",
minify: true,
sourcemap: "inline",
sourcemap: Script.channel === "dev" || Script.channel === "local" ? "inline" : "none",
splitting: true,
compile: {
autoloadBunfig: false,