-
-
Notifications
You must be signed in to change notification settings - Fork 608
css-loader 0.15.1 breaking multiple transforms #88
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
+1 for this issue. Also discovered it yesterday. I'm running version 0.15.1 too. |
I can't reproduce this issue. I tried adding your transform example to https://github.com/css-modules/webpack-demo and it compiled fine. Can you update your dependencies and verify you're still experiencing this? |
@markdalgleish is working for me now... quick sample of dependencies that are now working:
It doesn't look like anything has actually been updated in the time between my last comment and now. I tried adding to tests in |
If this is still an issue on |
Problem
Updated to the latest css-loader in my project and had issues with declarations where I had multiple transforms happening. Here is an example:
transform: translate(-50%, -50%) scale(1,1);
This would then be compiled to:
transform: translate(-50%, -50% scale(1,1));
I tried troubleshooting with newer/older versions of
style-loader
,sass-loader
,postcss-loader
etc and the only solution that worked was to revert css-loader back to 0.14.5.Only thing that I changed from my initial config was updating css-loader to the latest and it broke. Might be related to #87?
The text was updated successfully, but these errors were encountered: