mirror of https://github.com/webpack/webpack.git
Default 'source' to 'false' for stats
This commit is contained in:
parent
b0518552e5
commit
ee64e6dcfc
|
|
@ -185,7 +185,7 @@ class Stats {
|
|||
!forToString
|
||||
);
|
||||
const showChildren = optionOrLocalFallback(options.children, true);
|
||||
const showSource = optionOrLocalFallback(options.source, !forToString);
|
||||
const showSource = optionOrLocalFallback(options.source, false);
|
||||
const showModuleTrace = optionOrLocalFallback(options.moduleTrace, true);
|
||||
const showErrors = optionOrLocalFallback(options.errors, true);
|
||||
const showErrorDetails = optionOrLocalFallback(
|
||||
|
|
|
|||
Loading…
Reference in New Issue