From 1fee7caab55a00bbb0b6c51ed5f8cd810bf64346 Mon Sep 17 00:00:00 2001 From: CanadaHonk Date: Fri, 9 Dec 2022 22:49:03 +0000 Subject: [PATCH] glugun: add minify experimental warning --- glugun/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/glugun/index.js b/glugun/index.js index 6f82433..59c20e4 100644 --- a/glugun/index.js +++ b/glugun/index.js @@ -101,6 +101,8 @@ const _buildWin32 = async (name, dir, attrs) => { export const build = async (name, dir, platform = 'win32', attrs = 'system-chromium,system-node') => { log('Building', name, 'on', platform, 'with', attrs.split(',').join(', ') + '...'); + if (minifyBackend) log(`Minifying is experimental!`); + console.log(); const startTime = performance.now(); switch (platform) {