Jekyll: Gem File Build issues - Resolved
web jekyll gemfile
Was previously getting a lot of Sass warnings with Jekyll builds. This addresses that.
From time to time get warnings such as below where new versions of encompassed packages cause warnings about not being in the standard group of packages and so will need to be explicitly included in teh gemfile.
Was getting the following warnings with Jekyll builds such as:
Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.
Answer on talk.jekyllrb.com
Link: DEPRECATION WARNING about sass with minimal-mistakes-jekyll theme
“Same warning as you saw. I installed “gem “jekyll-sass-converter”, “~> 2.0” in my Gemfile, with the specific version of sass-converter. Then run bundle update. You will see in console: Using jekyll-sass-converter 2.2.0 (was 3.0.0) Then restart your jekyll. It should be worked without the warning now.”
Starting with a Jekyll Theme
gem "jekyll-theme-leap-day"
Update that in Gemfile
Becomes …
gem "jekyll-sass-converter", "~> 2.0"
gem "jekyll-theme-leap-day"
bundle update
PS C:\Folders\Source\repos\BlogSite\DJzBlog> bundle update
Fetching gem metadata from https://rubygems.org/...........
Resolving dependencies...
Fetching sassc 2.4.0
Installing sassc 2.4.0 with native extensions
Fetching jekyll-sass-converter 2.2.0 (was 3.1.0)
Installing jekyll-sass-converter 2.2.0 (was 3.1.0)
Bundle updated!
PS C:\Folders\Source\repos\BlogSite\DJzBlog>
Then
bundle install
Build Jekyll
C:/Ruby34-x64/lib/ruby/gems/3.4.0/gems/liquid-4.0.4/lib/liquid/standardfilters.rb:2: warning: bigdecimal was loaded from the standard library, but is not part of the default gems starting from Ruby 3.4.0.
You can add bigdecimal to your Gemfile or gemspec to silence this warning.
C:/Ruby34-x64/lib/ruby/3.4.0/bundled_gems.rb:82:in 'Kernel.require': cannot load such file -- bigdecimal (LoadError)
FAIL!
Update to Gemfile further
gem "jekyll-sass-converter", "~> 2.0"
gem "jekyll-theme-leap-day"
gem "bigdecimal"
Build Jekyll again
C:/Ruby34-x64/lib/ruby/gems/3.4.0/gems/jekyll-4.4.1/lib/jekyll.rb:26: warning: logger was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0.
You can add logger to your Gemfile or gemspec to silence this warning.
Configuration file: C:/Folders/Source/repos/BlogSite/DJzBlog/_config.yml
Source: C:/Folders/Source/repos/BlogSite/DJzBlog
Destination: C:/Folders/Source/repos/BlogSite/DJzBlog/_site
Incremental build: disabled. Enable with --incremental
Generating...
==== Create a catpage for any cat without a page.====
==== Create a tagpage for any tag without a page.====
Jekyll Feed: Generating feed for posts
done in 193.054 seconds.
Auto-regeneration: disabled. Use --watch to enable.
Logger
Next: Will need to address logger issue at some stage. Added logger to Gem file
gem "jekyll-sass-converter", "~> 2.0"
gem "jekyll-theme-leap-day"
gem "bigdecimal"
gem "logger"
Then
bundle install
Next Build:
PS C:\Folders\Source\repos\BlogSite\DJzBlog> scripts/buildjekyl -B
Build B: True, Category Folder C: , N: False , Copy cats folder K: False, Copy tags folder TT: False, II: False, File: , Folder:
C Target: $web/
Building Jekyll
Configuration file: C:/Folders/Source/repos/BlogSite/DJzBlog/_config.yml
Source: C:/Folders/Source/repos/BlogSite/DJzBlog
Destination: C:/Folders/Source/repos/BlogSite/DJzBlog/_site
Incremental build: disabled. Enable with --incremental
Generating...
==== Create a catpage for any cat without a page.====
==== Create a tagpage for any tag without a page.====
Jekyll Feed: Generating feed for posts
done in 198.912 seconds.
Auto-regeneration: disabled. Use --watch to enable.
ALL GOOD NOW! 😄
Topic | Subtopic | |
< Prev: | IoT | And all that stuff |
This Category Links | ||
Category: | Web Sites Index: | Web Sites |
< Prev: | Azure Devops | Jekyll Deployment - Script for Direct Deployment updates |

