Add back running modules without patches
This commit is contained in:
parent
067a16c9dc
commit
b2036762b5
|
@ -161,6 +161,8 @@ Reflect.defineProperty(Function.prototype, "m", {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
let wreqNotInitializedLogged = false;
|
||||||
|
|
||||||
function patchFactory(id: PropertyKey, factory: ModuleFactory) {
|
function patchFactory(id: PropertyKey, factory: ModuleFactory) {
|
||||||
const originalFactory = factory;
|
const originalFactory = factory;
|
||||||
|
|
||||||
|
@ -299,8 +301,9 @@ function patchFactory(id: PropertyKey, factory: ModuleFactory) {
|
||||||
// eslint-disable-next-line prefer-const
|
// eslint-disable-next-line prefer-const
|
||||||
let [module, exports, require] = args;
|
let [module, exports, require] = args;
|
||||||
|
|
||||||
|
if (wreq == null) {
|
||||||
// Make sure the require argument is actually the WebpackRequire function
|
// Make sure the require argument is actually the WebpackRequire function
|
||||||
if (wreq == null && typeof require === "function" && require.m != null) {
|
if (typeof require === "function" && require.m != null) {
|
||||||
const { stack } = new Error();
|
const { stack } = new Error();
|
||||||
const webpackInstanceFileName = stack?.match(/\/assets\/(.+?\.js)/)?.[1];
|
const webpackInstanceFileName = stack?.match(/\/assets\/(.+?\.js)/)?.[1];
|
||||||
logger.warn(
|
logger.warn(
|
||||||
|
@ -309,6 +312,14 @@ function patchFactory(id: PropertyKey, factory: ModuleFactory) {
|
||||||
")"
|
")"
|
||||||
);
|
);
|
||||||
_initWebpack(require);
|
_initWebpack(require);
|
||||||
|
} else if (IS_DEV) {
|
||||||
|
if (!wreqNotInitializedLogged) {
|
||||||
|
wreqNotInitializedLogged = true;
|
||||||
|
logger.error("WebpackRequire was not initialized, running modules without patches instead.");
|
||||||
|
}
|
||||||
|
|
||||||
|
return originalFactory.apply(this, args);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let factoryReturn: unknown;
|
let factoryReturn: unknown;
|
||||||
|
|
Loading…
Reference in a new issue