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.
  • Loading branch information
jvalkeejarvi authored and angular-robot[bot] committed Nov 28, 2022
1 parent 978274c commit 012393d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
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 012393d

Please sign in to comment.