run-dev: Suppress the notices made by third-party tools.

This limits the `run-dev.py` startup output.
And made the terminal message a bit more clear about
accessing the server.

Fixes #16846
This commit is contained in:
Ganesh Pawar
2020-12-29 15:26:28 +05:30
committed by Tim Abbott
parent 50121cce5e
commit eefa687832
2 changed files with 12 additions and 1 deletions

View File

@@ -224,6 +224,16 @@ export default (_env: unknown, argv: {mode?: string}): webpack.Configuration[] =
},
},
plugins: [
new webpack.ProgressPlugin({
handler(percentage) {
if (percentage === 1) {
console.log(
"\u001B[34mi 「wdm」\u001B[0m:",
"Webpack compilation successful.",
);
}
},
}),
new DebugRequirePlugin(),
new BundleTracker({
filename: production
@@ -256,6 +266,7 @@ export default (_env: unknown, argv: {mode?: string}): webpack.Configuration[] =
},
publicPath: "/webpack/",
stats: "errors-only",
noInfo: true,
},
};