From dc20a7cd896882905a7ec2ed9fad7f2b428fdf79 Mon Sep 17 00:00:00 2001 From: Muhammed Mukhthar CM Date: Wed, 18 Mar 2026 05:42:51 +0000 Subject: [PATCH] Build: fix bundled plugin runtime symlinks --- scripts/stage-bundled-plugin-runtime.mjs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/stage-bundled-plugin-runtime.mjs b/scripts/stage-bundled-plugin-runtime.mjs index 07fd9e958f0..cbd28bc3b24 100644 --- a/scripts/stage-bundled-plugin-runtime.mjs +++ b/scripts/stage-bundled-plugin-runtime.mjs @@ -102,10 +102,6 @@ function linkPluginNodeModules(params) { if (params.distPluginDir) { removePathIfExists(path.join(params.distPluginDir, "node_modules")); } - if (!fs.existsSync(params.sourcePluginNodeModulesDir)) { - return; - } - fs.symlinkSync(params.sourcePluginNodeModulesDir, runtimeNodeModulesDir, symlinkType()); if (params.distPluginDir) { const distNodeModulesDir = path.join(params.distPluginDir, "node_modules");