From 9be0d9113207794dbf477a658ca80aef57c14c0c Mon Sep 17 00:00:00 2001 From: Dimitar Kerezov Date: Thu, 22 Mar 2018 09:42:45 +0200 Subject: [PATCH] fix: remove progress indication Remove progress indication as `webpack` [prints said indication on the `stderr`](https://github.com/webpack/webpack/blob/4428efe48e1c5ff4cadb79e13f0fa48c12bdac35/lib/ProgressPlugin.js#L50) which confuses some tools --- lib/compiler.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/compiler.js b/lib/compiler.js index 9f66cd92..b1c3b3cb 100644 --- a/lib/compiler.js +++ b/lib/compiler.js @@ -58,7 +58,6 @@ exports.runWebpackCompiler = function runWebpackCompiler(config, $projectData, $ ...sourceMapSupportArgs, pathResolve(projectDir, "node_modules", "webpack", "bin", "webpack.js"), `--config=${pathResolve(projectDir, "webpack.config.js")}`, - "--progress", ...(config.watch ? ["--watch"] : []), ...envParams, ].filter(a => !!a);