Skip to content

Commit 4fd7310

Browse files
filipesilvavikerman
authored andcommitted
feat(@angular-devkit/build-angular): improve verbose output (#12833)
1 parent aaa453e commit 4fd7310

File tree

1 file changed

+7
-2
lines changed
  • packages/angular_devkit/build_angular/src/angular-cli-files/models/webpack-configs

1 file changed

+7
-2
lines changed

packages/angular_devkit/build_angular/src/angular-cli-files/models/webpack-configs/stats.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,16 @@ const webpackOutputOptions = {
2626
};
2727

2828
const verboseWebpackOutputOptions = {
29+
// The verbose output will most likely be piped to a file, so colors just mess it up.
30+
colors: false,
31+
usedExports: true,
32+
maxModules: Infinity,
33+
optimizationBailout: true,
34+
reasons: true,
2935
children: true,
3036
assets: true,
3137
version: true,
32-
reasons: true,
33-
chunkModules: false, // TODO: set to true when console to file output is fixed
38+
chunkModules: true,
3439
errorDetails: true,
3540
moduleTrace: true,
3641
};

0 commit comments

Comments
 (0)