Skip to content

Commit

Permalink
fix(nxls): install deps only in nested folder (#2384)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxKless authored Jan 17, 2025
1 parent 2fb13a2 commit de5fcb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/scripts/copy-nxls-package-json.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const fs = require('fs-extra');
const { execSync } = require('child_process');
fs.copySync('./apps/nxls/package.json', './dist/apps/nxls/package.json');

execSync(`npm i -f`, {
execSync(`npm i -f --install-strategy nested`, {
stdio: 'inherit',
cwd: './dist/apps/nxls',
});

0 comments on commit de5fcb5

Please sign in to comment.