-
Notifications
You must be signed in to change notification settings - Fork 463
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
outputStyle: "compressed" not playing nicely with sass list string #1701
Comments
I'm getting a different symptom, but same thing. When I do |
In my case I found if needed to enclose the string in quotes to be fixed. |
Please include at least the versions you are using. I cannot reproduce the original report, I just get |
I'm generating css for a bunch of different color styles (.is-red, .is-yellow, .is-purple, etc...). I made a sass list and parse through it like such:
All the color variables are defined and working properly on their own.
And here's the relevant part of my Gruntfile.coffee section:
Anyway, things work great when I have outputStyle set as "expanded" or "compact". But when outputStyle is "compressed" it will not generate the css for "yellow" and only for "yellow", strangely enough. It doesn't matter what order it is in the color list either, as I've tested moving it to the beginning and the middle of the list. It really just seems to be the string "yellow" as the first part of the list item, because I also tested changing that to something else ("real-yellow") and that worked fine. Any thoughts? Surely "yellow" isn't a reserved word?
The text was updated successfully, but these errors were encountered: