-
-
Notifications
You must be signed in to change notification settings - Fork 608
CSS Module composes imports aren't added to webpack #286
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
Comments
This is directly connected to #131. Because webpack loaders config is disregarded for dependencies, css preprocessors are also ignored. |
Is there any progress on this? Is there a reason why dependencies are not processed with webpack loaders config? @sokra |
I'm stuck with this issue. Is there any progress on this ? I have roughly the same webpack config and the same result :
a.css
b.css
file-558a148428a98beb4fa4.css
expected
|
PR welcome! |
Use |
Say there's a project like this:
and a config roughly like:
a.css
will be processed byb.css
' loader config even though it does't match the file test. This results in the equivalent of:even though I'd expect the output to look like:
Ideally
css-loader
shouldwebpack.addDependency
for css module source dependencies so they get processed with the same set of loaders as the rest of the config and not jus the root file's loader url.The text was updated successfully, but these errors were encountered: