From 7a4b1a05586cb3ab033eb1d7a2928d2e1d54458d Mon Sep 17 00:00:00 2001 From: wont-stream Date: Fri, 17 Jan 2025 18:22:42 -0500 Subject: [PATCH] Enable conditional minification based on NOWATCH environment variable --- index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.ts b/index.ts index 4280763..4ca247e 100644 --- a/index.ts +++ b/index.ts @@ -15,7 +15,7 @@ const build = async () => { experimentalCss: true, splitting: true, sourcemap: "linked", - //minify: true, + ...(process.env.NOWATCH === "1" ? {minify: true} : {}) }); const end = Date.now(); await cleanOldFiles(built.outputs);