We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Before we started using postcss-easy-import, stylesheets were included manually, like so:
postcss-easy-import
@import "./components/input.css"; @import "./components/input-extra.css"; @import "./components/input-group.css";
Now that we are using postcss-easy-import we don't have to do that, we can do:
@import "./components/*";
The problem is that it seems to be importing stylesheets without hyphenation last. So the above will actually end up being equivalent to:
@import "./components/input-extra.css"; @import "./components/input-group.css"; @import "./components/input.css";
Might there anyway to control the sort order? Ideally some sort of natural sort would take into effect. Thanks for your time!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Before we started using
postcss-easy-import
, stylesheets were included manually, like so:Now that we are using
postcss-easy-import
we don't have to do that, we can do:The problem is that it seems to be importing stylesheets without hyphenation last. So the above will actually end up being equivalent to:
Might there anyway to control the sort order? Ideally some sort of natural sort would take into effect. Thanks for your time!
The text was updated successfully, but these errors were encountered: