From 2149f6bffd84b86d2c69ed9edf5500cc1130bf87 Mon Sep 17 00:00:00 2001 From: Yuxuan Zhang Date: Fri, 29 Dec 2023 03:51:48 -0500 Subject: [PATCH] rollup.config: remove debug console logging --- rollup.config.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/rollup.config.ts b/rollup.config.ts index 49692956..40478c70 100644 --- a/rollup.config.ts +++ b/rollup.config.ts @@ -54,7 +54,6 @@ const esmBuild: RollupOptions = { format: 'esm', entryFileNames: `[name].js`, chunkFileNames(chunk) { - console.log('chunkFileNames =>', chunk.name) return `${chunk.name}-[hash].js` }, manualChunks(id) { @@ -64,7 +63,6 @@ const esmBuild: RollupOptions = { const match = /^.*\-worker(?=(\.(js|ts))?$)/i.exec(id) if (match) { const [name] = match - console.log('manualChunks worker =>', name) return name } },