Skip to content

Commit f19f441

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 f7cfd54 commit f19f441

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
@@ -144,7 +144,7 @@ export function getCommonConfig(wco: WebpackConfigOptions) {
144144
}
145145

146146
if (buildOptions.progress) {
147-
extraPlugins.push(new ProgressPlugin({ profile: buildOptions.verbose, colors: true }));
147+
extraPlugins.push(new ProgressPlugin({ profile: buildOptions.verbose }));
148148
}
149149

150150
if (buildOptions.showCircularDependencies) {

0 commit comments

Comments
 (0)