From 840ca6f54943eafd80e4f22535910e2f294005cc Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Sat, 11 Feb 2023 23:40:01 -0500 Subject: [PATCH] Adds better webpack stats output --- webpack.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/webpack.config.js b/webpack.config.js index b5a57d7..8e9934c 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -251,6 +251,8 @@ function getExtensionConfig(target, mode, env) { stats: { preset: 'errors-warnings', assets: true, + assetsSort: 'name', + assetsSpace: 100, colors: true, env: true, errorsCount: true, @@ -484,9 +486,12 @@ function getWebviewsConfig(mode, env) { stats: { preset: 'errors-warnings', assets: true, + assetsSort: 'name', + assetsSpace: 100, colors: true, env: true, errorsCount: true, + excludeAssets: [/\.(ttf|webp)/], warningsCount: true, timings: true, },