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>
90 lines
2.6 KiB
JavaScript
90 lines
2.6 KiB
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const WebpackError = require("./WebpackError");
|
|
|
|
/** @typedef {import("./Dependency").DependencyLocation} DependencyLocation */
|
|
/** @typedef {import("./Module")} Module */
|
|
|
|
const previouslyPolyfilledBuiltinModules = {
|
|
assert: "assert/",
|
|
buffer: "buffer/",
|
|
console: "console-browserify",
|
|
constants: "constants-browserify",
|
|
crypto: "crypto-browserify",
|
|
domain: "domain-browser",
|
|
events: "events/",
|
|
http: "stream-http",
|
|
https: "https-browserify",
|
|
os: "os-browserify/browser",
|
|
path: "path-browserify",
|
|
punycode: "punycode/",
|
|
process: "process/browser",
|
|
querystring: "querystring-es3",
|
|
stream: "stream-browserify",
|
|
_stream_duplex: "readable-stream/duplex",
|
|
_stream_passthrough: "readable-stream/passthrough",
|
|
_stream_readable: "readable-stream/readable",
|
|
_stream_transform: "readable-stream/transform",
|
|
_stream_writable: "readable-stream/writable",
|
|
string_decoder: "string_decoder/",
|
|
sys: "util/",
|
|
timers: "timers-browserify",
|
|
tty: "tty-browserify",
|
|
url: "url/",
|
|
util: "util/",
|
|
vm: "vm-browserify",
|
|
zlib: "browserify-zlib"
|
|
};
|
|
|
|
class ModuleNotFoundError extends WebpackError {
|
|
/**
|
|
* @param {Module | null} module module tied to dependency
|
|
* @param {Error & { details?: string }} err error thrown
|
|
* @param {DependencyLocation} loc location of dependency
|
|
*/
|
|
constructor(module, err, loc) {
|
|
let message = `Module not found: ${err.toString()}`;
|
|
|
|
// TODO remove in webpack 6
|
|
const match = err.message.match(/Can't resolve '([^']+)'/);
|
|
if (match) {
|
|
const request = match[1];
|
|
const alias =
|
|
previouslyPolyfilledBuiltinModules[
|
|
/** @type {keyof previouslyPolyfilledBuiltinModules} */ (request)
|
|
];
|
|
if (alias) {
|
|
const pathIndex = alias.indexOf("/");
|
|
const dependency = pathIndex > 0 ? alias.slice(0, pathIndex) : alias;
|
|
message +=
|
|
"\n\n" +
|
|
"BREAKING CHANGE: " +
|
|
"webpack < 5 used to include polyfills for node.js core modules by default.\n" +
|
|
"This is no longer the case. Verify if you need this module and configure a polyfill for it.\n\n";
|
|
message +=
|
|
"If you want to include a polyfill, you need to:\n" +
|
|
`\t- add a fallback 'resolve.fallback: { "${request}": require.resolve("${alias}") }'\n` +
|
|
`\t- install '${dependency}'\n`;
|
|
message +=
|
|
"If you don't want to include a polyfill, you can use an empty module like this:\n" +
|
|
`\tresolve.fallback: { "${request}": false }`;
|
|
}
|
|
}
|
|
|
|
super(message);
|
|
|
|
this.name = "ModuleNotFoundError";
|
|
this.details = err.details;
|
|
this.module = module;
|
|
this.error = err;
|
|
this.loc = loc;
|
|
}
|
|
}
|
|
|
|
module.exports = ModuleNotFoundError;
|