Server IP : 162.213.251.212 / Your IP : 3.144.26.47 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/allssztx/www/easybuyer/node_modules/webpack/lib/async-modules/ |
Upload File : |
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const HarmonyImportDependency = require("../dependencies/HarmonyImportDependency"); /** @typedef {import("../Compiler")} Compiler */ /** @typedef {import("../Module")} Module */ class InferAsyncModulesPlugin { /** * Apply the plugin * @param {Compiler} compiler the compiler instance * @returns {void} */ apply(compiler) { compiler.hooks.compilation.tap("InferAsyncModulesPlugin", compilation => { const { moduleGraph } = compilation; compilation.hooks.finishModules.tap( "InferAsyncModulesPlugin", modules => { /** @type {Set<Module>} */ const queue = new Set(); for (const module of modules) { if (module.buildMeta && module.buildMeta.async) { queue.add(module); } } for (const module of queue) { moduleGraph.setAsync(module); for (const [ originModule, connections ] of moduleGraph.getIncomingConnectionsByOriginModule(module)) { if ( connections.some( c => c.dependency instanceof HarmonyImportDependency && c.isTargetActive(undefined) ) ) { queue.add(originModule); } } } } ); }); } } module.exports = InferAsyncModulesPlugin;