Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Option for compact console info #17

Closed
klimashkin opened this issue Aug 26, 2014 · 7 comments
Closed

Option for compact console info #17

klimashkin opened this issue Aug 26, 2014 · 7 comments

Comments

@klimashkin
Copy link

Hello!
It would be greate, if was an option for compact info in console instead of full list of all depeneds in bundle.
It needs for knowing when bundle compiled after change without watching full deps list

@sokra
Copy link
Member

sokra commented Aug 26, 2014

after a change it should only print the changed modules...

@klimashkin
Copy link
Author

For me it prints 238 lines of modules and line webpack: bundle is now VALID.
After I change one module it do the same: 238 lines of modules and line webpack: bundle is now VALID.

My config:

{noInfo: false, // Display no info to console (only warnings and errors)
quiet: false, // Display nothing to the console
lazy: false, // No watching, but recompilation on every request
watchDelay: 300}

@sokra
Copy link
Member

sokra commented Aug 26, 2014

Aha ok, you are using the API. Try this:

{noInfo: false, // Display no info to console (only warnings and errors)
quiet: false, // Display nothing to the console
lazy: false, // No watching, but recompilation on every request
stats: {
  cached: false
},
watchDelay: 300}

http://webpack.github.io/docs/node.js-api.html#stats-tojson

@klimashkin
Copy link
Author

Thanks!
What configuration should be to asset table displayed only at first compilation, not when one of modules changed?

                                   Asset     Size  Chunks             Chunk Names
                          main.bundle.js  1276246       0  [emitted]  main
    0.8cefbfdbf64236da8355.hot-update.js     1798       0  [emitted]  main
    8cefbfdbf64236da8355.hot-update.json       36          [emitted]
                      main.bundle.js.map  1552506       0  [emitted]  main
0.8cefbfdbf64236da8355.hot-update.js.map     2386       0  [emitted]  main
chunk    {0} main.bundle.js, 0.8cefbfdbf64236da8355.hot-update.js, main.bundle.js.map, 0.8cefbfdbf64236da8355.hot-update.js.map (main) 1196728 [rendered]

@sokra
Copy link
Member

sokra commented Aug 27, 2014

There is none... Need to add something like: cachedAssets

@klimashkin
Copy link
Author

Hmm, added cachedAssets: false

stats: {
  hash: false,
  cached: false,
  cachedAssets: false,
  colors: true
 }

But it still prints table after change /app/components/About.react.js

webpack: bundle is now INVALID.
Version: webpack 1.4.0-beta3
Time: 1002ms
                                   Asset     Size  Chunks             Chunk Names
                          main.bundle.js  1396323       0  [emitted]  main
    0.aac560d93e9287cbf52e.hot-update.js     1947       0  [emitted]  main
    aac560d93e9287cbf52e.hot-update.json       36          [emitted]
                      main.bundle.js.map  1702478       0  [emitted]  main
0.aac560d93e9287cbf52e.hot-update.js.map     2570       0  [emitted]  main
chunk    {0} main.bundle.js, 0.aac560d93e9287cbf52e.hot-update.js, main.bundle.js.map, 0.aac560d93e9287cbf52e.hot-update.js.map (main) 1311658 [rendered]
   [13] ./app/components/About.react.js 1903 {0} [built]
webpack: bundle is now VALID.

@sokra
Copy link
Member

sokra commented Sep 4, 2014

hmm... that were the files that were changed during this compilation...

You can disable assets output completly by assets: false, but the webpack/webpack-dev-server executable doesn't allow to configure it different for the first build. (You can do this when using the node.js API.)

vitalybe pushed a commit to vitalybe/goodread-friends that referenced this issue May 13, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants