-
Notifications
You must be signed in to change notification settings - Fork 565
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
Webpack Warning - There is another module with equal name when case is ignored #82
Comments
Okay I investigated the issue more carefully. As it turns out it is quite simple. import classNames from 'classNames'; I leave it open, because inconsistency in module names for different module syntax is a bad practise. |
probably better to keep it all lowercased |
Agreed, but that is now a massive breaking change for anyone using bower. |
Agree, it is definitely a breaking change. So I would put it in a Major release. |
I vote the AMD exports are removed entirely; then this is a non-issue. |
Assuming most people have now switched to ES imports, why doesn't |
The issue help me solve my problem.Thanks. |
Probably resolved by #150, closing in favour of that (unless it isn't, in which case, re-open) |
My Webpack build logs the following warning:
I checked the webpack repo and they have a related issue #382
I use ES2015 module syntax as follows:
I quickly checked your code and found two possible parts causing this warning:
classNames
vs.classnames
The text was updated successfully, but these errors were encountered: