Skip to content

Commit

Permalink
fix(@angular-devkit/build-angular): correctly set Sass quietDeps and …
Browse files Browse the repository at this point in the history
…verbose options

The logic to set these options was flipped which caused the warnings to
be displayed when verbose was disabled.

(cherry picked from commit 012393d)
  • Loading branch information
jvalkeejarvi authored and alan-agius4 committed Nov 28, 2022
1 parent 324f8da commit 2891d5b
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -232,7 +232,7 @@ export function getStylesConfig(wco: WebpackConfigOptions): Configuration {
sassImplementation,
includePaths,
false,
!buildOptions.verbose,
!!buildOptions.verbose,
!!buildOptions.preserveSymlinks,
),
},
Expand All @@ -254,7 +254,7 @@ export function getStylesConfig(wco: WebpackConfigOptions): Configuration {
sassImplementation,
includePaths,
true,
!buildOptions.verbose,
!!buildOptions.verbose,
!!buildOptions.preserveSymlinks,
),
},
Expand Down

0 comments on commit 2891d5b

Please sign in to comment.