This repository was archived by the owner on May 29, 2019. It is now read-only.
This repository was archived by the owner on May 29, 2019. It is now read-only.
plugin produces a lot of empty logs while extracting #35
Closed
Activity
warrenrumak commentedon Jan 5, 2015
Hi @deepsweet ,
You can disable the output from Child plugins by including this in your webpack config
Hope this helps a bit.
ColCh commentedon Jan 26, 2015
advice from sokra:
with the devserver: devServer: { stats: { children: false } }
pstoica commentedon Apr 9, 2015
children: false
doesn't seem to work using the CLI tool?luisrudge commentedon Jun 1, 2015
works fine with gulp
pstoica commentedon Jun 1, 2015
gulp-webpack does some custom stuff. I think this was fixed through all this: webpack/webpack#980
marr commentedon Jun 2, 2015
I'm still seeing the
Child extract-text-webpack-plugin:
output even with thestats: { children: false }
set on my webpack config.timaschew commentedon Jun 21, 2015
@pstoica @marr
it works fine for me if I run
webpack
CLI with a webpack.config.js like this:mateatslc commentedon Jul 6, 2015
i can confirm that this last one by @timaschew works fine.
joezimjs commentedon Oct 27, 2015
Adding
stats: { children: false }
to the main context of the configuration worked for me as well. Thanks.vyorkin commentedon Nov 9, 2015
Doesn't work for me, but I'm sure I've set this
stats: { children: false }
optionColCh commentedon Nov 9, 2015
@vyorkin are you sure You've added it to
devServer
section?vyorkin commentedon Nov 9, 2015
@ColCh yes, but I don't see how its related to devServer, I've looked at the plugin source but didn't find anything relevant to these messages. Here is a part of my config:
ColCh commentedon Nov 9, 2015
Hm... I don't know. Try to ask @sokra
30 remaining items