-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix deprecation warnings from Dart Sass #700
Conversation
@ntkme Thanks for submitting a proposal. But why can't we use |
We can, but |
Thanks @ntkme |
Has this been released in a new version yet? |
|
The latest release was made over 4 years ago… |
I see here https://github.com/jekyll/minima/tree/master/_sass/minima that "Fix deprecation warnings from Dart Sass" #700 is done, so can someone please explain why - although I have the latest Jekyll and minima in my Gemfile - that I’m still getting these deprecation warnings? |
However,
math.div
is not supported bysass
orsassc
used in older version of jekyll-sass-converter. Therefore this PR fixes it in a backward compatible way by replaceing/ 2
with* .5
, and replacing/ 3
with* 33.3333333333 * .01
(a hack for precision in Sass). The css output is exactly same as before.@ashmaroli