Plugins: stage local bundled runtime tree

This commit is contained in:
Gustavo Madeira Santana
2026-03-16 16:43:23 +00:00
parent 7e2658908d
commit 09df232f39
8 changed files with 225 additions and 24 deletions

View File

@@ -1,10 +1,12 @@
import { pathToFileURL } from "node:url";
import { copyBundledPluginMetadata } from "./copy-bundled-plugin-metadata.mjs";
import { copyPluginSdkRootAlias } from "./copy-plugin-sdk-root-alias.mjs";
import { stageBundledPluginRuntime } from "./stage-bundled-plugin-runtime.mjs";
export function runRuntimePostBuild(params = {}) {
copyPluginSdkRootAlias(params);
copyBundledPluginMetadata(params);
stageBundledPluginRuntime(params);
}
if (import.meta.url === pathToFileURL(process.argv[1] ?? "").href) {