We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bfc4b6 commit db374ecCopy full SHA for db374ec
packages/@vue/cli-shared-utils/lib/env.js
@@ -93,7 +93,9 @@ exports.hasPnpm3OrLater = () => {
93
return _hasPnpm3orLater
94
}
95
try {
96
- const pnpmVersion = execSync('pnpm --version').toString()
+ const pnpmVersion = execSync('pnpm --version', {
97
+ stdio: ['pipe', 'pipe', 'ignore']
98
+ }).toString()
99
// there's a critical bug in pnpm 2
100
// https://github.com/pnpm/pnpm/issues/1678#issuecomment-469981972
101
// so we only support pnpm >= 3.0.0
0 commit comments