Aggrid custom

This commit is contained in:
2026-03-17 08:44:54 +01:00
commit 739374d83f
3234 changed files with 1533165 additions and 0 deletions

31
node_modules/rolldown/dist/parallel-plugin-worker.mjs generated vendored Executable file
View File

@@ -0,0 +1,31 @@
import { n as __toESM, t as require_binding } from "./shared/binding-C5G6_6ql.mjs";
import "./shared/normalize-string-or-regex-C5RWbu3O.mjs";
import { n as PluginContextData, r as bindingifyPlugin } from "./shared/bindingify-input-options-Cu7pt6SZ.mjs";
import "./shared/error-CP8smW_P.mjs";
import "./shared/parse-B3SIKejW.mjs";
import { parentPort, workerData } from "node:worker_threads";
//#region src/parallel-plugin-worker.ts
var import_binding = /* @__PURE__ */ __toESM(require_binding(), 1);
const { registryId, pluginInfos, threadNumber } = workerData;
(async () => {
try {
(0, import_binding.registerPlugins)(registryId, await Promise.all(pluginInfos.map(async (pluginInfo) => {
const definePluginImpl = (await import(pluginInfo.fileUrl)).default;
const plugin = await definePluginImpl(pluginInfo.options, { threadNumber });
return {
index: pluginInfo.index,
plugin: bindingifyPlugin(plugin, {}, {}, new PluginContextData(() => {}, {}, [], []), [], () => {}, "info", false)
};
})));
parentPort.postMessage({ type: "success" });
} catch (error) {
parentPort.postMessage({
type: "error",
error
});
} finally {
parentPort.unref();
}
})();
//#endregion
export {};