How to make webpack less verbose? -
this wes craven's new nightmare!
why need horror on every little bit of change? how can turn off these notifications?!
you can add --quiet
, --no-info
webpack-dev-server's command line: http://webpack.github.io/docs/webpack-dev-server.html#webpack-dev-server-cli
if use webpack in watch mode, can put | awk '{if ($0 !~ /^ *\[[0-9]*\]/) {print} else {if ($0 ~ /\[built\]/) {print}}}'
after it, print output except files not rebuilt.
Comments
Post a Comment