From 35b48cbdfca95746458e0afde7c8d3edc9ff4a90 Mon Sep 17 00:00:00 2001 From: Charlie Mahoney Date: Mon, 25 Nov 2024 14:11:19 -0500 Subject: [PATCH] Create quietDeps setting --- gulpfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 767770d..7b98b36 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -66,6 +66,7 @@ let settings = { }, browserslist: ["> 2%", "last 2 versions", "IE 11", "not dead"], sassSourcemaps: true, + quietSassDeps: false }, sprite: { width: 24, @@ -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}`))