马宇豪
2024-07-16 f591c27b57e2418c9495bc02ae8cfff84d35bc18
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Tobias Koppers @sokra
*/
 
"use strict";
 
const WebpackError = require("./WebpackError");
 
/** @typedef {import("./Module")} Module */
/** @typedef {import("./ModuleGraph")} ModuleGraph */
 
/**
 * @param {Module[]} modules the modules to be sorted
 * @returns {Module[]} sorted version of original modules
 */
const sortModules = modules => {
    return modules.sort((a, b) => {
        const aIdent = a.identifier();
        const bIdent = b.identifier();
        /* istanbul ignore next */
        if (aIdent < bIdent) return -1;
        /* istanbul ignore next */
        if (aIdent > bIdent) return 1;
        /* istanbul ignore next */
        return 0;
    });
};
 
/**
 * @param {Module[]} modules each module from throw
 * @param {ModuleGraph} moduleGraph the module graph
 * @returns {string} each message from provided modules
 */
const createModulesListMessage = (modules, moduleGraph) => {
    return modules
        .map(m => {
            let message = `* ${m.identifier()}`;
            const validReasons = Array.from(
                moduleGraph.getIncomingConnectionsByOriginModule(m).keys()
            ).filter(x => x);
 
            if (validReasons.length > 0) {
                message += `\n    Used by ${validReasons.length} module(s), i. e.`;
                message += `\n    ${validReasons[0].identifier()}`;
            }
            return message;
        })
        .join("\n");
};
 
class CaseSensitiveModulesWarning extends WebpackError {
    /**
     * Creates an instance of CaseSensitiveModulesWarning.
     * @param {Iterable<Module>} modules modules that were detected
     * @param {ModuleGraph} moduleGraph the module graph
     */
    constructor(modules, moduleGraph) {
        const sortedModules = sortModules(Array.from(modules));
        const modulesList = createModulesListMessage(sortedModules, moduleGraph);
        super(`There are multiple modules with names that only differ in casing.
This can lead to unexpected behavior when compiling on a filesystem with other case-semantic.
Use equal casing. Compare these module identifiers:
${modulesList}`);
 
        this.name = "CaseSensitiveModulesWarning";
        this.module = sortedModules[0];
    }
}
 
module.exports = CaseSensitiveModulesWarning;