Implement JQHTML function cache ID system and fix bundle compilation Implement underscore prefix for system tables Fix JS syntax linter to support decorators and grant exception to Task system SPA: Update planning docs and wishlists with remaining features SPA: Document Navigation API abandonment and future enhancements Implement SPA browser integration with History API (Phase 1) Convert contacts view page to SPA action Convert clients pages to SPA actions and document conversion procedure SPA: Merge GET parameters and update documentation Implement SPA route URL generation in JavaScript and PHP Implement SPA bootstrap controller architecture Add SPA routing manual page (rsx:man spa) Add SPA routing documentation to CLAUDE.md Phase 4 Complete: Client-side SPA routing implementation Update get_routes() consumers for unified route structure Complete SPA Phase 3: PHP-side route type detection and is_spa flag Restore unified routes structure and Manifest_Query class Refactor route indexing and add SPA infrastructure Phase 3 Complete: SPA route registration in manifest Implement SPA Phase 2: Extract router code and test decorators Rename Jqhtml_Component to Component and complete SPA foundation setup 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
72 lines
2.1 KiB
JavaScript
72 lines
2.1 KiB
JavaScript
/*
|
|
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) =>
|
|
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) =>
|
|
modules
|
|
.map((m) => {
|
|
let message = `* ${m.identifier()}`;
|
|
const validReasons = [
|
|
...moduleGraph.getIncomingConnectionsByOriginModule(m).keys()
|
|
].filter(Boolean);
|
|
|
|
if (validReasons.length > 0) {
|
|
message += `\n Used by ${validReasons.length} module(s), i. e.`;
|
|
message += `\n ${
|
|
/** @type {Module[]} */ (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([...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;
|