-
Notifications
You must be signed in to change notification settings - Fork 12k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(@angular-devkit/build-angular): fixed ignoring of karma plugins c…
…onfig Previously `karma-coverage` was validated only when in karma plugins config one of these was added ``'karma-coverage'` or `require('karma-coverage')` This change will allow cli to validate `karma-coverage` plugin if in `karma.conf.js` `'karma-*'` is used. Example: ``` plugins: [ ... 'karma-*', require('@angular-devkit/build-angular/plugins/karma'), ... ] ``` Fixes #19993 (cherry picked from commit a7ffce1)
- Loading branch information
1 parent
6857b38
commit 6f0098c
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters