Merge branch 'modules-proxy-patches' into immediate-finds-modules-proxy

This commit is contained in:
Nuckyz 2024-05-31 06:16:12 -03:00
commit b53c78c2ba
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9

View file

@ -70,13 +70,13 @@ define(Function.prototype, "m", {
enumerable: false, enumerable: false,
set(this: WebpackRequire, bundlePath: WebpackRequire["p"]) { set(this: WebpackRequire, bundlePath: WebpackRequire["p"]) {
define(this, "p", { value: bundlePath });
if (bundlePath !== "/assets/") return; if (bundlePath !== "/assets/") return;
logger.info("Main Webpack found" + interpolateIfDefined` in ${fileName}` + ", initializing internal references to WebpackRequire"); logger.info("Main Webpack found" + interpolateIfDefined` in ${fileName}` + ", initializing internal references to WebpackRequire");
_initWebpack(this); _initWebpack(this);
clearTimeout(setterTimeout); clearTimeout(setterTimeout);
define(this, "p", { value: bundlePath });
} }
}); });
// setImmediate to clear this property setter if this is not the main Webpack. // setImmediate to clear this property setter if this is not the main Webpack.