Skip to content

Commit 9210eab

Browse files
remove prefix command on npm
1 parent 6e54155 commit 9210eab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/npm-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const buildInstallCommand = (options: {
99
save?: boolean;
1010
isDev?: boolean;
1111
}) => {
12-
const args = ['install', '--prefix', options.installPath];
12+
const args = ['install'];
1313

1414
if (options.save) {
1515
args.push('--save-exact');

0 commit comments

Comments
 (0)