Enable conditional minification based on NOWATCH environment variable
This commit is contained in:
parent
b8362d2d30
commit
7a4b1a0558
1 changed files with 1 additions and 1 deletions
2
index.ts
2
index.ts
|
@ -15,7 +15,7 @@ const build = async () => {
|
||||||
experimentalCss: true,
|
experimentalCss: true,
|
||||||
splitting: true,
|
splitting: true,
|
||||||
sourcemap: "linked",
|
sourcemap: "linked",
|
||||||
//minify: true,
|
...(process.env.NOWATCH === "1" ? {minify: true} : {})
|
||||||
});
|
});
|
||||||
const end = Date.now();
|
const end = Date.now();
|
||||||
await cleanOldFiles(built.outputs);
|
await cleanOldFiles(built.outputs);
|
||||||
|
|
Loading…
Add table
Reference in a new issue