Skip to content

Commit 8383c6b

Browse files
alan-agius4clydin
authored andcommitted
fix(@angular-devkit/build-angular): silence Sass compiler warnings from 3rd party stylesheets
With this change we enable `quietDeps`, which causes the Sass compiler not to emit warnings from a stylesheet that is loaded through load-path. The `--verbose` option can be used to opt-out from this behaviour and display all warnings. Closes #21235
1 parent 3c2fb5c commit 8383c6b

File tree

1 file changed

+6
-0
lines changed
  • packages/angular_devkit/build_angular/src/webpack/configs

1 file changed

+6
-0
lines changed

packages/angular_devkit/build_angular/src/webpack/configs/styles.ts

+6
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,9 @@ export function getStylesConfig(wco: WebpackConfigOptions): webpack.Configuratio
347347
// Ex: /* autoprefixer grid: autoplace */
348348
// See: https://github.com/webpack-contrib/sass-loader/blob/45ad0be17264ceada5f0b4fb87e9357abe85c4ff/src/getSassOptions.js#L68-L70
349349
outputStyle: 'expanded',
350+
// Silences compiler warnings from 3rd party stylesheets
351+
quietDeps: !buildOptions.verbose,
352+
verbose: buildOptions.verbose,
350353
},
351354
},
352355
},
@@ -377,6 +380,9 @@ export function getStylesConfig(wco: WebpackConfigOptions): webpack.Configuratio
377380
// Ex: /* autoprefixer grid: autoplace */
378381
// See: https://github.com/webpack-contrib/sass-loader/blob/45ad0be17264ceada5f0b4fb87e9357abe85c4ff/src/getSassOptions.js#L68-L70
379382
outputStyle: 'expanded',
383+
// Silences compiler warnings from 3rd party stylesheets
384+
quietDeps: !buildOptions.verbose,
385+
verbose: buildOptions.verbose,
380386
},
381387
},
382388
},

0 commit comments

Comments
 (0)