-
Notifications
You must be signed in to change notification settings - Fork 464
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
Error: media query expression must begin with '(' #1907
Comments
This is the line that raises the error:
If I add a
|
I am unable to reproduce this error with $str: '(min-width: 40em)';
@media screen and #{$str} {
a { foo: bar; }
} |
Without a working sample of code that reproduces this error there isn't anything we can do. We will not debug your entire app. |
Turns out if I get bored enough I will debug a framework. This is a regression in 3.3.3. foo {
bar: 'test' + '1 #{2} 3';
} LibSass 3.3.2 foo {
bar: "test1 2 3"; } LibSass 3.3.2 foo {
bar: "test'1 "2 3'; } |
This PR add specs for sass/libsass#1907
Spec added sass/sass-spec#725 |
Anyway you guys could do a hotfix release for this? It's affecting a wide number of people who are trying to compile Foundation 6 with Libsass. If the milestone is 3.3.4 (which you're saying is March), I'll have to roll back to Libsass 3.3.2—this bug is a showstopper. |
@bdkjones we don't currently have a patch available. I'll take a look after dinner. If we don't release 3.3.4 in the next 8hrs I would rollback back to 3.3.2. In the future we'll add foundation to our release checklist. |
Ok. I'll rollback. Adding Foundation to the release check sounds like a great idea; it's massively popular and has lots of complex Sass that provides a great real-world test. |
Same problems here. Is there a doc about how to rollback Libsass in Codekit? I'm a front-front-end guy ... :\ [edit] |
Update to CodeKit 2.7.1. I rolled Libsass back in that release. Sent from my iPhone
|
A simplied test case foo {
bar: '#{b}' + az;
} |
Will see if I can tackle this one too. Sometimes I wonder if we will ever run out of "edge" cases ... |
Hi, I can confirm having a same error, I am using the latest Foundation >> Error: media query expression must begin with '('
>> on line 139 of components/foundation-sites/scss/util/_breakpoint.scss
>> >>
>> -----------^ |
Same Problem here when using python-libsass 0.10.1 (=libbsass 3.2.3) on Debian 8 and OS X 10.8. Moreover on OS X 10.7 the Django runserver exits with a malloc error! |
This PR activates specs for sass/libsass#1907
This is my sassc version:
which is latest HEAD version, when I run:
I get this error:
But compass compiles it:
Any idea what's going on here?
The text was updated successfully, but these errors were encountered: