From c157032c80684f41ae6ea2197773952fbbaee8be Mon Sep 17 00:00:00 2001 From: lifehackerhansol Date: Sun, 1 Oct 2023 00:42:41 -0700 Subject: [PATCH] Gemfile: pin jekyll-sass-converter to v2.2 Updating to Jekyll 4.3.0 and above causes build warnings as this converter has switched to a different implementation (sass-embedded). [0] As the theme is intended to be GitHub Pages compatible (which, by the way, has a horribly outdated Jekyll version), these warnings are not avoidable on later Jekyll versions which have added support for the latest version of jekyll-sass-converter. Since Jekyll still supports the older, now-deprecated sassc-based version [1], let's just keep it that way. [0]: https://github.com/mmistakes/minimal-mistakes/issues/4054 [1]: https://github.com/jekyll/jekyll/blob/v4.3.2/jekyll.gemspec#L39 --- Gemfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 098df9d423..94c4305ecd 100644 --- a/Gemfile +++ b/Gemfile @@ -2,5 +2,6 @@ source "https://rubygems.org" gem "webrick", "~>1.7" gem "kramdown-parser-gfm", "~>1.1" gem "jekyll-redirect-from" +gem "jekyll-sass-converter", "~>2.2" gem "wdm", "~> 0.1.0" if Gem.win_platform? -gemspec \ No newline at end of file +gemspec