UNPKG

rolldown

Version:

Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.

32 lines (30 loc) 1.05 kB
import { registerPlugins } from "./shared/parse-ast-index-BsbuAWqn.mjs"; import { PluginContextData, bindingifyPlugin } from "./shared/src-D1dc6nJr.mjs"; import "./shared/misc-CQeo-AFx.mjs"; import { parentPort, workerData } from "node:worker_threads"; //#region src/parallel-plugin-worker.ts const { registryId, pluginInfos, threadNumber } = workerData; (async () => { try { const plugins = await Promise.all(pluginInfos.map(async (pluginInfo) => { const pluginModule = await import(pluginInfo.fileUrl); const definePluginImpl = pluginModule.default; const plugin = await definePluginImpl(pluginInfo.options, { threadNumber }); return { index: pluginInfo.index, plugin: bindingifyPlugin(plugin, {}, {}, new PluginContextData(() => {}, {}, []), [], () => {}, "info", false) }; })); registerPlugins(registryId, plugins); parentPort.postMessage({ type: "success" }); } catch (error) { parentPort.postMessage({ type: "error", error }); } finally { parentPort.unref(); } })(); //#endregion export { };