-
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
Block comments should be preserved in "static" at rules #1233
Comments
I am unable to reproduce this specific error. However I have noticed we incorrectly remove the comment and adding maintaining the authors whitespace. @-moz-keyframes animatetoptop /* Firefox */ line 429
{
from {width:0%}
to {width:100%}
} Ruby Sass @-moz-keyframes animatetoptop /* Firefox */ line 429 {
from {
width: 0%; }
to {
width: 100%; } } Libsass @-moz-keyframes animatetoptop line 429
{
from {
width: 0%; }
to {
width: 100%; } } |
The adjancent string is parsed literally and the comment node is part of it. Related to At_Rule parsing (I already did some improvements for values). This sample shows the behavior: @-moz-keyframes animatetoptop /* Firefox */ line 429 {
from {width:0%}
to {width:100%}
} ruby sass: @-moz-keyframes animatetoptop /* Firefox */ line 429 {
from {
width: 0%; }
to {
width: 100%; } } Related to #1263 |
Interesting you couldn't reproduce it. I wonder what it could be about my set up that would cause this if its not libsass. I will look into my other processes and see if its something else causing the problem. thanks |
When using @'s it appears to fail.
I'll get the following error.
I'm using gulp-sass: 2.0.1
The text was updated successfully, but these errors were encountered: