-
Notifications
You must be signed in to change notification settings - Fork 9
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
inconsistency with css-loader #8
Comments
I'm having a similar problem, but w/ a different line of code. 😄 This PR changed the Given that this library is basically piggybacking on what webpack does, it seems like it should be updated to match. I already asked in The actual problem I'm having is with |
@evilebottnawi is this something that can be changed here then? |
Why do you need |
@evilebottnawi - Here's the open issue: gajus/babel-plugin-react-css-modules#291 |
@benmvp You can send a PR |
Just copy logic from css-loader to here |
Cool, that was my plan, but wanted to make sure you were ok with it. |
👍 |
the regex at this line breaks consistency with css-loader generation getLocalIdent
the test case is
@
in node modules, scoping packages is getting popular and when we use the same parameters (localindentname, hashprefix,...) with requiring css from a node module that has@
in it,generic-names
replaces it with-
but css-loader leaves it as@
That's because,
\u00A0-\uFFFF
doesn't contain@
The text was updated successfully, but these errors were encountered: