-
Notifications
You must be signed in to change notification settings - Fork 6
Description
Ran into some problems while using the ColumnManager installed using NPM along with webpack-dev-server running ES6. The case is, when webpack tries to get dependencies of ColumnManager it has hard times looking for '_' module.
Module not found: Error: Cannot resolve module '_' in
Also it seems like the capital letters in the require's also are problematic because in some cases they force the doubling of modules loaded
WARNING in ./~/jquery/dist/jquery.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.WARNING in ./~/jQuery/dist/jquery.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.WARNING in ./~/backbone/backbone.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.WARNING in ./~/Backbone/backbone.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.WARNING in ./~/backgrid/lib/backgrid.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.WARNING in ./~/Backgrid/lib/backgrid.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.
Managed to fix this by changing "_" to "underscore" and the required module names to all lowercase. Reporting it to inform that such issues might exists in some cases.