-
Notifications
You must be signed in to change notification settings - Fork 513
plugin produces a lot of empty logs while extracting #35
Comments
Hi @deepsweet , stats: {
children: false
} Hope this helps a bit. |
advice from sokra: |
|
works fine with gulp |
gulp-webpack does some custom stuff. I think this was fixed through all this: webpack/webpack#980 |
I'm still seeing the |
i can confirm that this last one by @timaschew works fine. |
Adding |
Doesn't work for me, but I'm sure I've set this |
@vyorkin are you sure You've added it to |
@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:
|
Hm... I don't know. Try to ask @sokra |
@vyorkin The part you quoted there is your dev server config, not your webpack config. |
@ColCh @warrenrumak |
I've updated https://github.com/webpack/docs/wiki/node.js-api to include @sokra or anyone with permission.. can we build the documentation in gh-pages? Thanks |
Extract Text Webpack Plugin is still producing quite a large amount of duplicated and unhelpful log messages. I'm running If helpful, I've got my full config and log output in this gist |
Thanks, works for me. I use this for minimal logging (only valid/invalid and errors):
|
|
@helloyou2012 Could you provide a more complete example? We're drowning in hundreds of lines of this plugin. The other examples here have no effect. |
Nevermind, I found the culprit in some cleverly disguised |
@palnes When config is array and Demo: https://github.com/helloyou2012/webpack-demos/tree/master/extract-text |
* Add stats to config Reference webpack-contrib/extract-text-webpack-plugin#35 (comment) * Update webpack.d.ts
Can someone try with webpack 2? |
If you are not using webpack dev server, you can pass
|
Can confirm it works with webpack@2.2.1 + extract-text-webpack-plugin@2.0.0. |
Piggybacking off of @helloyou2012 's solution which didn't work for me in webpack 2:
It would be great to have an option to disable the verbosity though! I don't want to disable all children stats because that also turns off things like linting output. |
Adding Output w/ Children:
Output w/out Children:
|
@coreyleelarson Looks like not add the config Here is devServer config:
|
@donaldpipowitch worked fine, thanks |
yeah. as stated, the idea isn't to silence the output of all plugins... because some of it is desired (eslint for instance). So the stats: { children: false } setting doesn't really work for me and probably others. |
stats: {
// minimal logging
assets: false,
colors: true,
version: false,
hash: false,
timings: false,
chunks: false,
chunkModules: false,
children: false
} without success. I move to reopen @d3viant0ne |
Also see duplicate #97 |
So, there are still no good solutions from |
like this:
is it normal, or I had to see something useful? :)
The text was updated successfully, but these errors were encountered: