-
-
Notifications
You must be signed in to change notification settings - Fork 30
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
Support PostCSS insertBefore #75
Comments
Come to think of it, the documentation for this module doesn't mention that manipulating the parsed representation is even supported. I just inferred that it would work based on having used postcss and the presence of these methods. |
Thanks for opening an issue for this 🍺 True, the docs don't mention using I've changed the title of the issue and labeled it for enhancement. I see no reason why we can't support |
How Do We Reproduce?
Expected Behavior
That the string
12px
turns into aNumeric
token and gets added at the start so thatn.toString()
would return12px sans-serif
.Actual Behavior
If I try with an entire valid CSS rule, eg.
body { color: maroon }
, it works -- so it seems like this hits the regularpostcss
parser rather than thepostcss-values-parser
one.The text was updated successfully, but these errors were encountered: