-
Notifications
You must be signed in to change notification settings - Fork 2
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
How to use myth to preprocess vendor css #2
Comments
Sorry for the delayed response, must have missed the notification. I am guessing you want to also control where these are outputted to, or do you want to have one app.css and import these files in? |
I was going for the latter: Using CSS imports in @import "bower_components/suit-base/lib/base.css";
@import "bower_components/suit-components-arrange/lib/arrange.css";
@import "bower_components/suit-components-button/lib/button.css"; But IIRC the imports are not run through myth. |
It has to be relative to your inputFile: @import "../../bower_components/suit-base/lib/base.css";
@import "../../bower_components/suit-components-arrange/lib/arrange.css";
@import "../../bower_components/suit-components-button/lib/button.css"; |
Reopening, as the proposal to add |
Can you provide and example of how to run vendor css files through myth with this addon please?
For example if I install https://github.com/suitcss/suit with bower I have a bunch of css files that need to be run through a preprocessor that handles css variables, math, etc.
How do I preprocess them and add them to the tree?
The text was updated successfully, but these errors were encountered: