Skip to content

Commit

Permalink
chore: fix install verdacio command (#31897)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmytrokirpa authored Jul 2, 2024
1 parent 88db367 commit 99d7801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/workspace-plugin/scripts/install-verdaccio.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function main() {
} catch {
output.logSingleLine('Installing verdaccio...');
const pm = getPackageManagerCommand();
const cmd = `${pm} add -DW verdaccio@5 --ignore-scripts`;
const cmd = `${pm.addDev} verdaccio@5 --ignore-scripts`;
execSync(cmd, { stdio: 'inherit', cwd: workspaceRoot });
}

Expand Down

0 comments on commit 99d7801

Please sign in to comment.