We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f159090 commit 0322fddCopy full SHA for 0322fdd
src/env/package-manager.ts
@@ -65,7 +65,10 @@ export function detectPackageManager(): PackageManagerType {
65
return 'bun'
66
}
67
// If in node_modules but no other match, assume npm.
68
- if (argv0.includes('/node_modules/') || argv0.includes('\\node_modules\\')) {
+ if (
69
+ argv0.includes('/node_modules/') ||
70
+ argv0.includes('\\node_modules\\')
71
+ ) {
72
return 'npm'
73
74
0 commit comments