From fc4b72eaf84ceeb6be7b17174a0f27726d259603 Mon Sep 17 00:00:00 2001 From: Will Faught Date: Sun, 19 Jan 2025 11:43:00 -0800 Subject: [PATCH] Silence Dart Sass depecation warnings for Bootstrap --- layouts/partials/paige/tag-link.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/layouts/partials/paige/tag-link.html b/layouts/partials/paige/tag-link.html index f472e394..fada8f24 100644 --- a/layouts/partials/paige/tag-link.html +++ b/layouts/partials/paige/tag-link.html @@ -27,7 +27,9 @@ {{ end }} {{ if $sass }} - {{ $resource = $resource | toCSS (dict "enableSourceMap" $enablesourcemap "includePaths" $includepaths "outputStyle" $outputstyle "transpiler" "dartsass") }} + {{/* TODO: Remove the silenceDeprecations option when Bootstrap is updated beyond v5.3.3. */}} + + {{ $resource = $resource | toCSS (dict "enableSourceMap" $enablesourcemap "includePaths" $includepaths "outputStyle" $outputstyle "silenceDeprecations" (slice "color-functions" "global-builtin" "import" "mixed-decls") "transpiler" "dartsass") }} {{ end }} {{ $resource = $resource | minify | fingerprint }}