From 484a72bed81599e745f5ac56e8b991b8c4796524 Mon Sep 17 00:00:00 2001 From: Dannon Baker Date: Tue, 8 Oct 2024 09:07:16 -0400 Subject: [PATCH] Install npm-package viz to the packge prefix explicitly. --- client/gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/gulpfile.js b/client/gulpfile.js index feb386952329..b34b6f78fb6e 100644 --- a/client/gulpfile.js +++ b/client/gulpfile.js @@ -237,7 +237,7 @@ async function installDependenciesFromXML(xmlPath, pluginDir) { try { const installResult = child_process.spawnSync( "npm", - ["install", "--silent", "--no-save", `${pkgName}@${version}`], + ["install", "--silent", "--no-save", "--prefix .", `${pkgName}@${version}`], { cwd: pluginDir, stdio: "inherit",