Skip to content

Commit bc9d6eb

Browse files
jonaswreKeen Yee Liau
authored and
Keen Yee Liau
committed
fix(@angular-devkit/build-angular): remove invalid colors option of ProgressPlugin
ProgressPlugin has no option colors webpack/webpack#8487 ng serve fails if progress is shown
1 parent 4296257 commit bc9d6eb

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export function getCommonConfig(wco: WebpackConfigOptions) {
150150
}
151151

152152
if (buildOptions.progress) {
153-
extraPlugins.push(new ProgressPlugin({ profile: buildOptions.verbose, colors: true }));
153+
extraPlugins.push(new ProgressPlugin({ profile: buildOptions.verbose }));
154154
}
155155

156156
if (buildOptions.showCircularDependencies) {

0 commit comments

Comments
 (0)