-
-
Notifications
You must be signed in to change notification settings - Fork 73
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
[SASS] Application broken since v.3.3 #120
Comments
Current workaround: downgrade to v3.2.0, which works fine:
|
Fixed in master, will be published soon |
As it was not fixed, I created a pull request adding a unit test that shows my problem. |
Ok, this seems like problem with node-sass, since indentedSyntax is set to true for the sass file, but still it treats the imported file as scss-style. |
I'll reopen till this is fixed in node-sass |
Hi @brunolemos - thanks for the test, this issue still exists in node-sass – so follow that and we'll have this meteor package fixed once it's fixed upstream (the master branch here with your tests has the sass test disabled because of it). |
Just added this to a new sample meteor app I am working on and the issue is still there. I am using version 3.4.1 and still getting the same issue as reported in If you want to see what is happening you can clone the repository https://github.com/matfin/gfmtest I am using Meteor 1.2.1 |
Yes, it's still not fixed in libsass |
+1 |
From sass/node-sass#1192:
Since the indented syntax doesn't seem to be a priority for libsass, this might be a solution for some of you. |
I use jade and coffeescript in my projects, so it's consistent to use sass (all indented syntax). |
Booo 😿 would like to see this fixed eventually |
If this helps, I get a similar error message:
This was happening from Cheers! |
lowered version because of known [bug](Meteor-Community-Packages/meteor-scss#120) with fourseven/meteor-scss
It appears that compiling of .sass files still is not working (due to the upstream issue) However, it is not clear from the ReadMe that this is the case and I just spent the last couple hours trying to troubleshoot this until I discovered this issue. Had I known, I would have just gone with .scss right away. It would be great if a note could be added to the ReadMe that explains that there may be issues with compiling of .sass files. |
compiling sass fails, downgraded to v3.2 as work around at the moment |
as indented-syntax compilation is broken in the latest version of fourseven:meteor-scss is broken (Meteor-Community-Packages/meteor-scss#120) but needed as a dependence for the latest version of reywood:bootstrap3-sass, so the bootstrap-reference does not rely on the build process (englue/meteor-bootstrap3-sass#32) a switch to the scss syntax was necessary.
Same issue |
Same Issue. |
Check my comment here: #220 (comment) |
Looks like you cannot install v3.2.0 of fourseven:scss anymore.
Any workarounds for that? |
I'll close this issue since it doesn't seem likely node-sass will fix the support for the older sass syntax, since it's considered deprecated. So there's not much we can do about it. |
Had this error after adding Bulma, meteor add fourseven:scss
meteor npm install bulma client/main.scss @charset "utf-8";
@import "../node_modules/bulma/bulma.sass"; Is there any known way to get this package working with |
I'm using SASS (not SCSS) and having this error on all files that has an import:
Or this:
It seems that it's trying to compile my .sass as an .scss.
REPRODUCTION:
main.sass
_teste.sass THIS IS NOT WORKING ANYMORE
_teste.sass this works, but shouldn't because it's a .sass
The text was updated successfully, but these errors were encountered: