File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed
Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,15 @@ plugins:
3838 - jekyll-feed
3939 - jemoji
4040
41+ # Sass configuration to suppress deprecation warnings from theme
42+ sass :
43+ style : compressed
44+ quiet_deps : true
45+ silence_deprecations :
46+ - import
47+ - global-builtin
48+ - color-functions
49+
4150color_scheme : nhs
4251mermaid :
4352 # Version of mermaid library
Original file line number Diff line number Diff line change 1- @import " ./color_schemes/ light" ;
1+ $color-scheme : light !default ;
22
33@font-face {
44 font-family : " Frutiger W01" ;
Original file line number Diff line number Diff line change @@ -46,7 +46,8 @@ _install-dependency: # Install asdf dependency - mandatory: name=[listed in the
4646 asdf install ${name} $(or ${version},)
4747
4848_install-dependencies : # Install all the dependencies listed in .tool-versions
49- for plugin in $$ (grep ^[a-z] .tool-versions | sed ' s/[[:space:]].*//' ); do
49+ for plugin in $$ (grep ' ^[a-z]' .tool-versions | cut -f1 -d' ' ); do \
50+ echo " Installing $$ {plugin}..." ; \
5051 make _install-dependency name=" $$ {plugin}"
5152 done
5253
You can’t perform that action at this time.
0 commit comments