Skip to content

Commit 59ec72a

Browse files
committed
fix: remove stdio option at initializePackageManager
1 parent 5fb1f88 commit 59ec72a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/setup/lib/version-update.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { getPackageInfo } from './get-package-info.ts';
66

77
export function initializePackageManager() {
88
try {
9-
execSync('npm --version', { stdio: 'ignore' });
9+
execSync('npm --version');
1010
} catch {
1111
pkgmng();
1212
}

0 commit comments

Comments
 (0)