Skip to content

Commit

Permalink
Merge pull request #18950 from dannon/installed-viz-followup
Browse files Browse the repository at this point in the history
Install npm-package viz to the package prefix explicitly.
  • Loading branch information
guerler authored Oct 9, 2024
2 parents ada740e + 484a72b commit dc8a56b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit dc8a56b

Please sign in to comment.