Skip to content

Commit

Permalink
fix(@angular-devkit/build-angular): remove invalid colors option of P…
Browse files Browse the repository at this point in the history
…rogressPlugin

ProgressPlugin has no option colors webpack/webpack#8487
ng serve fails if progress is shown
  • Loading branch information
jonaswre authored and kyliau committed Dec 12, 2018
1 parent 4296257 commit bc9d6eb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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) {
Expand Down

0 comments on commit bc9d6eb

Please sign in to comment.