File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
packages/angular_devkit/build_angular/src/angular-cli-files/utilities Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -86,9 +86,12 @@ export function statsToString(json: any, statsConfig: any) {
86
86
}
87
87
}
88
88
89
- // TODO(#16193): Don't emit this warning in the first place rather than just suppressing it.
90
89
const ERRONEOUS_WARNINGS_FILTER = ( warning : string ) => ! [
90
+ // TODO(#16193): Don't emit this warning in the first place rather than just suppressing it.
91
91
/ m u l t i p l e a s s e t s e m i t d i f f e r e n t c o n t e n t .* 3 r d p a r t y l i c e n s e s \. t x t / i,
92
+ // Webpack 5+ has no facility to disable this warning.
93
+ // System.import is used in @angular /core for deprecated string-form lazy routes
94
+ / S y s t e m .i m p o r t \( \) i s d e p r e c a t e d a n d w i l l b e r e m o v e d s o o n / i,
92
95
] . some ( msg => msg . test ( warning ) ) ;
93
96
94
97
export function statsWarningsToString ( json : any , statsConfig : any ) : string {
You can’t perform that action at this time.
0 commit comments