Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"chat.tools.terminal.autoApprove": {
"/^cd /workspaces/cloudnativelinz\\.github\\.io && bundle exec jekyll build$/": {
"approve": true,
"matchCommandLine": true
}
}
}
5 changes: 2 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ gem "jekyll-seo-tag"
gem "jekyll-redirect-from" # https://stackoverflow.com/questions/31166747/jekyll-default-page
gem "jekyll-datapage-generator"

# Use sassc instead of sass-embedded for better CI compatibility
gem "sassc", "~> 2.4"
gem "jekyll-sass-converter", "~> 2.2"
# jekyll-sass-converter 3.x uses sass-embedded (Dart Sass)
gem "jekyll-sass-converter", "~> 3.0"

# Required standard library gems for Ruby 3.4+
gem "bigdecimal"
Expand Down
29 changes: 22 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,19 @@ GEM
eventmachine (>= 0.12.9)
http_parser.rb (~> 0)
eventmachine (1.2.7)
ffi (1.17.2)
ffi (1.17.3-arm64-darwin)
ffi (1.17.3-x86_64-linux-gnu)
ffi (1.17.3-x86_64-linux-musl)
forwardable-extended (2.6.0)
google-protobuf (4.34.0-arm64-darwin)
bigdecimal
rake (~> 13.3)
google-protobuf (4.34.0-x86_64-linux-gnu)
bigdecimal
rake (~> 13.3)
google-protobuf (4.34.0-x86_64-linux-musl)
bigdecimal
rake (~> 13.3)
http_parser.rb (0.8.0)
i18n (1.14.7)
concurrent-ruby (~> 1.0)
Expand Down Expand Up @@ -41,8 +52,8 @@ GEM
jekyll (>= 3.7, < 5.0)
jekyll-redirect-from (0.16.0)
jekyll (>= 3.3, < 5.0)
jekyll-sass-converter (2.2.0)
sassc (> 2.0.1, < 3.0)
jekyll-sass-converter (3.1.0)
sass-embedded (~> 1.75)
jekyll-seo-tag (2.8.0)
jekyll (>= 3.8, < 5.0)
jekyll-sitemap (1.4.0)
Expand All @@ -64,14 +75,19 @@ GEM
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (6.0.2)
rake (13.3.1)
rb-fsevent (0.11.2)
rb-inotify (0.11.1)
ffi (~> 1.0)
rexml (3.4.4)
rouge (4.6.1)
safe_yaml (1.0.5)
sassc (2.4.0)
ffi (~> 1.9)
sass-embedded (1.97.3-arm64-darwin)
google-protobuf (~> 4.31)
sass-embedded (1.97.3-x86_64-linux-gnu)
google-protobuf (~> 4.31)
sass-embedded (1.97.3-x86_64-linux-musl)
google-protobuf (~> 4.31)
terminal-table (3.0.2)
unicode-display_width (>= 1.1.1, < 3)
unicode-display_width (2.6.0)
Expand All @@ -91,12 +107,11 @@ DEPENDENCIES
jekyll-datapage-generator
jekyll-feed
jekyll-redirect-from
jekyll-sass-converter (~> 2.2)
jekyll-sass-converter (~> 3.0)
jekyll-seo-tag
jekyll-sitemap
logger
ostruct
sassc (~> 2.4)

BUNDLED WITH
2.4.10
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,5 @@ exclude:
- LICENSE
- README.md
- CNAME
- .venv

2 changes: 1 addition & 1 deletion assets/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
---

// Use SVG icons
@import 'svg-icons';
@use 'svg-icons';

// Mobile mixin
@mixin mobile {
Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Makefile for Jekyll commands

# Variables
JEKYLL_CMD = bundle exec jekyll serve
JEKYLL_CMD = bundle exec jekyll serve --host 0.0.0.0
LIVERELOAD_FLAG = --livereload
FORCE_POLLING_FLAG = --force_polling

Expand Down