Skip to content

Commit

Permalink
Install npm-package viz to the packge prefix explicitly.
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Oct 8, 2024
1 parent 21cab6d commit 484a72b
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 484a72b

Please sign in to comment.