-
-
Notifications
You must be signed in to change notification settings - Fork 446
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
Move to Dart Sass #255
Comments
I don't use Rails much anymore but it sounds like migrating to |
Yeah, I was thinking pretty much the same thing 👍 If no one is available on your team and if you're okay with this, I can try to fork and make the change there! |
How about not specifying a sass dependency at all and leaving it up to the user to select the one that is appropriate for them? |
I just want to chime in here with my experience. I'm a maintainer over at OpenStreetMap and the dependency on Since libsass is dead, and the parsing problem is unlikely to be fixed there, I want to switch to dartsass-sprockets. But we can't since it's an either/or with sassc-rails vs dartsass-sprockets. And this gem has a hard runtime dependency on sassc-rails. I'd be in favour of either proposed solution - either switching the dependency to dartsass-sprockets (as per #256), or figuring out how to drop the hardcoded sass engine dependency entirely (as per above comment). Either way, having a bootstrap-rubygem is still very useful for us, just not one that depends on a legacy unmaintained gem! 😄 |
Not having a hardcoded Sass dependency would be better I guess, but I don't really know how to write this in a smart and clean way :( |
Something clean to write here maybe if we want to declare Sass as a soft dependency and let the user pick between the two gems (other than removing the gem from the current dependencies) |
Maybe something like this? begin
require 'dartsass-sprockets'
rescue LoadError
require 'sassc-rails'
rescue LoadError
raise LoadError.new("bootstrap-rubygem requires a Sass engine. Please add dartsass-sprockets or sassc-rails to your dependencies.")
end |
@SebouChu Yeah something along these lines would be ideal |
Hi!
Giving the fact that SassC is deprecated and that the
sassc-rails
gem seems dead for more than 3 years, I think the Bootstrap gem should move to Dart Sass.The Rails organization has a wrapper, being the
dartsass-rails
gem but it's not compatible with Sprockets.As an alternative, the TableCheck organization made a Sprockets-compatible wrapper, beautifully named
dartsass-sprockets
.What do you think?
The text was updated successfully, but these errors were encountered: