-
-
Notifications
You must be signed in to change notification settings - Fork 35
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
Check unknown variables on last step #12
Comments
+1 |
1 similar comment
+1 |
Will this go beyond PostCSS? I'm using FuseBox for a project wich provides "macros". You can use them to reference assets in your CSS files that get copied to the dist folder automatically. Now of course this looks like this: @font-face {
font-family: Roboto;
src: url('$assets/fonts/roboto-regular.ttf') format('ttf');
} which leads to a problem in combination with
|
@alinnert you can use |
I can work on this one, although it would be nice to first have a version of postcss-for that doesn't complain when you use variables as parameters (currently, doing so throws
We can also remove the special case for postcss-for-var solves this by replacing |
I am thinking about adding |
Right now we need to put postcss-mixins or postcss-for before postcss-simple-vars only because this plugin throw a error on unknow variable name.
But we can do smarter:
The text was updated successfully, but these errors were encountered: