mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-14 03:11:19 -06:00
13 lines
318 B
JavaScript
13 lines
318 B
JavaScript
const {
|
|
hasYarn,
|
|
hasProjectYarn
|
|
} = require('@vue/cli-shared-utils')
|
|
const { loadOptions } = require('@vue/cli/lib/options')
|
|
|
|
exports.getCommand = function (cwd = undefined) {
|
|
if (!cwd) {
|
|
return loadOptions().packageManager || (hasYarn() ? 'yarn' : 'npm')
|
|
}
|
|
return hasProjectYarn(cwd) ? 'yarn' : 'npm'
|
|
}
|