From bc9d6eb3e7620b2327c86888b45f436ab7ebd537 Mon Sep 17 00:00:00 2001 From: jonwrede Date: Wed, 12 Dec 2018 11:14:51 +0100 Subject: [PATCH] fix(@angular-devkit/build-angular): remove invalid colors option of ProgressPlugin ProgressPlugin has no option colors https://github.com/webpack/webpack/issues/8487 ng serve fails if progress is shown --- .../src/angular-cli-files/models/webpack-configs/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/angular_devkit/build_angular/src/angular-cli-files/models/webpack-configs/common.ts b/packages/angular_devkit/build_angular/src/angular-cli-files/models/webpack-configs/common.ts index 96d292f34381..07e1d9842714 100644 --- a/packages/angular_devkit/build_angular/src/angular-cli-files/models/webpack-configs/common.ts +++ b/packages/angular_devkit/build_angular/src/angular-cli-files/models/webpack-configs/common.ts @@ -150,7 +150,7 @@ export function getCommonConfig(wco: WebpackConfigOptions) { } if (buildOptions.progress) { - extraPlugins.push(new ProgressPlugin({ profile: buildOptions.verbose, colors: true })); + extraPlugins.push(new ProgressPlugin({ profile: buildOptions.verbose })); } if (buildOptions.showCircularDependencies) {