Skip to content
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
@deepsweet

Description

@deepsweet
Contributor

like this:

...
Child extract-text-webpack-plugin:

Child extract-text-webpack-plugin:

Child extract-text-webpack-plugin:

Child extract-text-webpack-plugin:

Child extract-text-webpack-plugin:
...

is it normal, or I had to see something useful? :)

Activity

warrenrumak

warrenrumak commented on Jan 5, 2015

@warrenrumak

Hi @deepsweet ,
You can disable the output from Child plugins by including this in your webpack config

    stats: {
      children: false  
    }

Hope this helps a bit.

ColCh

ColCh commented on Jan 26, 2015

@ColCh

advice from sokra: with the devserver: devServer: { stats: { children: false } }

pstoica

pstoica commented on Apr 9, 2015

@pstoica

children: false doesn't seem to work using the CLI tool?

luisrudge

luisrudge commented on Jun 1, 2015

@luisrudge

works fine with gulp

pstoica

pstoica commented on Jun 1, 2015

@pstoica

gulp-webpack does some custom stuff. I think this was fixed through all this: webpack/webpack#980

marr

marr commented on Jun 2, 2015

@marr

I'm still seeing the Child extract-text-webpack-plugin: output even with the stats: { children: false } set on my webpack config.

timaschew

timaschew commented on Jun 21, 2015

@timaschew

@pstoica @marr

it works fine for me if I run webpack CLI with a webpack.config.js like this:

module.exports = {
    stats: { children: false },
   // other settings
}
mateatslc

mateatslc commented on Jul 6, 2015

@mateatslc
Contributor

i can confirm that this last one by @timaschew works fine.

joezimjs

joezimjs commented on Oct 27, 2015

@joezimjs

Adding stats: { children: false } to the main context of the configuration worked for me as well. Thanks.

vyorkin

vyorkin commented on Nov 9, 2015

@vyorkin

Doesn't work for me, but I'm sure I've set this stats: { children: false } option

ColCh

ColCh commented on Nov 9, 2015

@ColCh

@vyorkin are you sure You've added it to devServer section?

vyorkin

vyorkin commented on Nov 9, 2015

@vyorkin

@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:

  ........................
  devtool: false,
  stats: { children: false, colors: true, reasons: false },
  devServer:
   { contentBase: '/my-awesome-project/src',
     publicPath: '/',
     hot: true,
     historyApiFallback: true,
     headers: { 'Access-Control-Allow-Origin': '*' },
     watchOptions: { aggregateTimeout: 0 },
     stats: { children: false, colors: true, reasons: true },
     noInfo: true,
     quiet: true },
  ........................
ColCh

ColCh commented on Nov 9, 2015

@ColCh

Hm... I don't know. Try to ask @sokra

30 remaining items

Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @marr@joshhunt@rstacruz@timaschew@bebraw

        Issue actions

          plugin produces a lot of empty logs while extracting · Issue #35 · webpack-contrib/extract-text-webpack-plugin