Webpack Warning - There is another module with equal name when case is ignored
See original GitHub issueMy Webpack build logs the following warning:
WARNING in ./~/classNames/index.js There is another module with an equal name when case is ignored. This can lead to unexpected behavior when compiling on a filesystem with other case-semantic. Rename module if multiple modules are expected or use equal casing if one module is expected.
I checked the webpack repo and they have a related issue #382
I use ES2015 module syntax as follows:
import classNames from 'classnames';
I quickly checked your code and found two possible parts causing this warning:
- it exports two additional variations (dedupe and bind) as the same name.
- The module names used to export as AMD and CommonJS Syntax are not consistent -
classNames
vs.classnames
Issue Analytics
- State:
- Created 7 years ago
- Reactions:4
- Comments:8
Top Results From Across the Web
Warning "There is another module with a equal name when ...
There is another module with a equal name when case is ignored. This can lead to unexpected behavior when compiling on a filesystem...
Read more >Webpack warning - There is another module with an equal ...
Webpack is giving these warnings in the browser console. enter image description here. I am unable to find the module names given in...
Read more >Webpack: There is another module with an equal name ... - I Love IT
WARNING : There is another module with an equal name when case is ignored. After some googling I got a solution! Check all...
Read more >webpack filename case warnings - purple:ops
js There is another module with a equal name when case is ignored. This can lead to unexpected behavior when compiling on a...
Read more >Output - webpack
If multiple modules would result in the same name, output.devtoolFallbackModuleFilenameTemplate is used instead for these modules.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
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
classnames
have an ES6 main file usingmodule
key inpackage.json
?module.exports
can be mapped to ES in 2 different ways (wildcard import and default import) which causes issues if used in a complicated scenarios with typescript, babel, node etc.