CaseSensitivePlugin
This plugin was renamed to CaseSensitivePlugin in v1.7.0. WarnCaseSensitiveModulesPlugin is deprecated and will be removed in a future release.
Detect case sensitivity conflicts in referenced module names and emit warnings.
Different operating systems may handle case sensitivity in file systems differently. When code references module names that differ only in case, this can lead to unexpected errors during cross-platform compilation. This plugin helps to avoid such situations.
Register
Example
Assume there is a utils.js file in the project:
When importing utils.js in a.js and b.js, if the case sensitivity in the import path is inconsistent, the plugin will emit a warning.
The warning is as follows:
This warning indicates that there is a case sensitivity conflict in module names, ensuring that the same module is used with consistent case sensitivity in the project.
CaseSensitivePlugin is based on module identifiers rather than the file system to determine case sensitivity differences.
When the build output includes files whose names differ only in letter casing, the plugin will emit a warning to avoid potential conflicts on case-insensitive file systems.

