Avoid redundant empty file

This commit is contained in:
Jake Archibald
2020-11-11 16:57:47 +00:00
parent eb9d0d186c
commit 52b3d0063f
2 changed files with 1 additions and 1 deletions

View File

@@ -110,6 +110,7 @@ export default async function ({ watch }) {
replace({ __PRERENDER__: false, __PRODUCTION__: isProduction }),
terser({ module: true }),
],
preserveEntrySignatures: false,
},
{
dir,

View File

@@ -527,7 +527,6 @@ export default class Compress extends Component<Props, State> {
}
if (!jobNeeded) return;
console.log('Processing');
const mainSignal = this.mainAbortController.signal;
const sideSignals = this.sideAbortControllers.map((ac) => ac.signal);