Remove all Loader.registry.delete lines

This commit is contained in:
2026-07-29 14:05:12 +01:00
parent 45509deff8
commit 88ead3b3d6
10 changed files with 9 additions and 147 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ export default async function grabFilePathModule({ file_path, out_file, }) {
jsx: "automatic",
outfile: target_cache_file_path,
});
Loader.registry.delete(target_cache_file_path);
// Loader.registry.delete(target_cache_file_path);
const module = await import(`${target_cache_file_path}?t=${Date.now()}`);
return module;
}
@@ -9,7 +9,7 @@ export default async function grabPageBundledReactComponent({ file_path, return_
try {
if (global.SSR_BUNDLER_CTX_MAP?.[file_path]) {
const abs = path.join(ROOT_DIR, global.SSR_BUNDLER_CTX_MAP[file_path].path);
Loader.registry.delete(abs);
// Loader.registry.delete(abs);
const mod = await import(`${abs}?t=${Date.now()}`);
const Main = mod.default;
return { component: Main };
@@ -17,7 +17,7 @@ export default async function grabPageCombinedServerRes({ file_path, debug, url,
? path.join(ROOT_DIR, root_server_ctx_map.path)
: root_server_file_path;
if (final_root_server_path) {
Loader.registry.delete(final_root_server_path);
// Loader.registry.delete(final_root_server_path);
}
const root_server_module = final_root_server_path
? await import(`${final_root_server_path}?t=${now}`)
@@ -38,7 +38,7 @@ export default async function grabPageCombinedServerRes({ file_path, debug, url,
? path.join(ROOT_DIR, page_server_ctx.path)
: server_file_path;
if (final_page_server_path) {
Loader.registry.delete(final_page_server_path);
// Loader.registry.delete(final_page_server_path);
}
const server_module = final_page_server_path
? await import(`${final_page_server_path}?t=${now}`)