-
Notifications
You must be signed in to change notification settings - Fork 115
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
Processing imported files #80
Comments
If you want the map plugin to run on imported files you need to either add it to the plugins option or run it after the import plugin. |
Thanks for the suggestion @jedmao |
Your processors need to be like this... var processors = [
atImport,
// more plugins...
]; |
Oh... awesome :) Many thanks man! |
This is probably a misunderstanding on my part of how this works, but im having a few issues, where the modifications made by postcss to my files stop working once I put that code into an import file.
For example, im using
postcss-map
to create maps, and have this on my main css file:However once I pull that code into a partial file than I later import it stops working, and the text is outputted without any modification, meaning it won't replace that map call by the corresponding value.
My gulp file looks like this:
Any tips?
The text was updated successfully, but these errors were encountered: