question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Webpack Warning - There is another module with equal name when case is ignored

See original GitHub issue

My 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:closed
  • Created 7 years ago
  • Reactions:4
  • Comments:8

github_iconTop GitHub Comments

3reactions
dcousenscommented, May 17, 2017

I vote the AMD exports are removed entirely; then this is a non-issue.

1reaction
anilanarcommented, Jul 8, 2017

Assuming most people have now switched to ES imports, why doesn’t classnames have an ES6 main file using module key in package.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.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found