-
Notifications
You must be signed in to change notification settings - Fork 0
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
Imports do not recompile #1
Comments
Deleting the plugin cache is an ugly workaround:
|
I went back and replaced this plugin with fourseven:[email protected] and then it works again, e.g. when adding some invalid code to _card.scss:
|
This is a big issue. I might be able to work on this when I have time, if no one else is. This package is important because fourtseven:scss / node-sass does not work on modern arm architectures |
Hi, I am also working on this problem as it is essential for my project. I have made good progress on it. The problem was caused by the Dart Sass compile options ignoring the importer property, and these legacy methods no longer work. A completely new approach is needed. The repository where I am working on this is illusionfield/meteor-scss. If you are interested, it would be great to maintain a package together, and perhaps one day we can get the updates to the community package |
I would suggest abandoning this package and go with leonardoventurini:scss instead. It is also based on Dart but works just like it should. |
Hi, leonardoventurini:scss isn't bad, but the Dart Sass render/renderSync method is deprecated and won't work in the future. Unfortunately, this package leonardoventurini/meteor-scss uses it. I'm trying to create a modern package, and it's really important for me to have a ready-to-use Meteor package solution available by the time Dart Sass 2.0 is released. So I started to develop illusionfield:scss |
Fair points, I didn’t know about the details around Dart and legacy calls. |
meteor
version:2.15
activitree:scss
version:1.0.2
Problem: Imported files are not recompiled when changed. This used to work with the fourseven version (that relied on the CachingCompiler).
My main.scss which is in the root app folder has the following partial content
but whatever changes I make in ./saas/_card.scss, it does not get recompiled.
If I change main.scss, it does recompile that file (but not the imports).
The text was updated successfully, but these errors were encountered: