From 6bdd60fe8a441218efd7a0ceae54d0b8e5ad8bcf Mon Sep 17 00:00:00 2001 From: Vendicated Date: Mon, 17 Feb 2025 01:45:23 +0100 Subject: [PATCH] fix reporter false positive --- src/webpack/webpack.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webpack/webpack.ts b/src/webpack/webpack.ts index 9cf43d9ed..24c549bc0 100644 --- a/src/webpack/webpack.ts +++ b/src/webpack/webpack.ts @@ -547,7 +547,7 @@ export const mapMangledModule = traceFunction("mapMangledModule", function mapMa * @see {@link mapMangledModule} */ export function mapMangledModuleLazy(code: string | RegExp | CodeFilter, mappers: Record, includeBlacklistedExports = false): Record { - if (IS_REPORTER) lazyWebpackSearchHistory.push(["mapMangledModule", [code, mappers]]); + if (IS_REPORTER) lazyWebpackSearchHistory.push(["mapMangledModule", [code, mappers, includeBlacklistedExports]]); return proxyLazy(() => mapMangledModule(code, mappers, includeBlacklistedExports)); }