Skip to content

Commit 99dfc62

Browse files
CCM-13667 fixing some ruby deprecations (#90)
1 parent 1bc2033 commit 99dfc62

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

docs/_config.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
4150
color_scheme: nhs
4251
mermaid:
4352
# Version of mermaid library

docs/_sass/color_schemes/nhs.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import "./color_schemes/light";
1+
$color-scheme: light !default;
22

33
@font-face {
44
font-family: "Frutiger W01";

scripts/init.mk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)