Skip to content

Commit

Permalink
Create quietDeps setting
Browse files Browse the repository at this point in the history
  • Loading branch information
mahoneycm committed Nov 25, 2024
1 parent 2b17d0f commit 35b48cb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ let settings = {
},
browserslist: ["> 2%", "last 2 versions", "IE 11", "not dead"],
sassSourcemaps: true,
quietSassDeps: false
},
sprite: {
width: 24,
Expand Down Expand Up @@ -198,7 +199,7 @@ function buildSass() {
sass({
outputStyle: "compressed",
includePaths: buildSettings.includes,
silenceDeprecations: ["mixed-decls"]
quietDeps: settings.compile.quietSassDeps,
}).on("error", handleError)
)
.pipe(replace(/\buswds @version\b/g, `based on uswds v${pkg}`))
Expand Down

0 comments on commit 35b48cb

Please sign in to comment.