ValidationError: неверные параметры плагина прогресса - PullRequest
0 голосов
/ 20 июня 2019

error while running angular cli Когда я запускаю свой проект из angular cli.это показывает мне эту ошибку.(изображение прилагается).

Я обновил свои файлы node_module и ищу на многих других платформах, но ...

options should NOT have additional properties
options should pass "instanceof" keyword validation
options should match exactly one schema in oneOf

ValidationError: Progress Plugin Invalid Options

options should NOT have additional properties
options should pass "instanceof" keyword validation
options should match exactly one schema in oneOf[![enter image description here][1]][1]

1 Ответ

1 голос
/ 20 июня 2019

Исправлена ​​ошибка с удалением цветов в этом файле: /node_modules/@angular-devkit/build-angular/src/angular-cli-files/models/webpack-configs/common.js в строке: 123

Изменено это:

extraPlugins.push(new ProgressPlugin({ profile: buildOptions.verbose, colors: true }));

на:

extraPlugins.push(new ProgressPlugin({ profile: buildOptions.verbose }));
...