Silence Dart Sass depecation warnings for Bootstrap

master
Will Faught 6 months ago
parent 7dcea2d442
commit fc4b72eaf8

@ -27,7 +27,9 @@
{{ end }} {{ end }}
{{ if $sass }} {{ 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 }} {{ end }}
{{ $resource = $resource | minify | fingerprint }} {{ $resource = $resource | minify | fingerprint }}

Loading…
Cancel
Save