Skip to content

Commit 2891d5b

Browse files
jvalkeejarvialan-agius4
authored andcommitted
fix(@angular-devkit/build-angular): correctly set Sass quietDeps and 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)
1 parent 324f8da commit 2891d5b

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ export function getStylesConfig(wco: WebpackConfigOptions): Configuration {
232232
sassImplementation,
233233
includePaths,
234234
false,
235-
!buildOptions.verbose,
235+
!!buildOptions.verbose,
236236
!!buildOptions.preserveSymlinks,
237237
),
238238
},
@@ -254,7 +254,7 @@ export function getStylesConfig(wco: WebpackConfigOptions): Configuration {
254254
sassImplementation,
255255
includePaths,
256256
true,
257-
!buildOptions.verbose,
257+
!!buildOptions.verbose,
258258
!!buildOptions.preserveSymlinks,
259259
),
260260
},

0 commit comments

Comments
 (0)