-
-
Notifications
You must be signed in to change notification settings - Fork 176
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
a problem with the sass compiler that is used #24
Comments
Hello @Joshlo, this extension is using @darrenkopp's libsass-net library as dependency: https://github.com/darrenkopp/libsass-net, which is the wrapper around libsass. The current version of libsass is v3.2.5, while libsass-net's latest master is consuming v3.2.4 https://github.com/darrenkopp/libsass-net/blob/master/README.md. When someone says Sass compiler, it usually considered as ruby-sass. While libsass is alternative implementation of ruby-sass and is written in C++ (instead of Ruby) and hence is blazingly fast in comparison; it is still yet to fully conform with Sass language v3.4, but they are very very near to level the gap, as reflected by the checklist at sass/libsass#629. To compare the languages features between two compilers, you can always use http://sassmeister.com/, where you can click on Settings icon in navbar and switch the compiler (ruby-sass / libsass). The equation boils down to:
As you can see we can not possibly remedy this issue from WebCompiler. Last but not the least, with VS2013 you can use Web Essentials 2013. It packs both engines (ruby and libsass) which can be switched from Hope this helps in some way. :) |
@Joshlo, I just released a new version that has LibSass v3.2.5. Can you please install the update and verify if this has been fixed? |
It appears that this is still a problem in LibSass v3.2.5. The updated Web Compiler v1.0.72 does not fix this issue. |
Ok, thanks for verifying. That means that it hasn't been implemented in LibSass yet and the issue should be opened on that repo |
Here is the related LibSass bug: sass/libsass#1231 |
Hi Mads,
First of all, I love this extension!
But there seems to be a problem when I try to compile the following Sass,
I have a list looking somthing like this:
And my loop through the list looks like this:
the problem is, that the result looks like this: (which the font can't interpret)
Where it should look like this:
The sass file is from: http://materializecss.com/
And they write that this bug should have been fixed in Sass v. 3.3.x. is it possible to update it?
Because their fix gives the same error
The text was updated successfully, but these errors were encountered: