mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-13 10:39:38 -06:00
33 lines
951 B
JavaScript
33 lines
951 B
JavaScript
const { chalk } = require('@vue/cli-shared-utils')
|
|
const getGlobalInstallCommand = require('./getGlobalInstallCommand')
|
|
|
|
module.exports = function loadCommand (commandName, moduleName) {
|
|
const isNotFoundError = err => {
|
|
return err.message.match(/Cannot find module/)
|
|
}
|
|
try {
|
|
return require(moduleName)
|
|
} catch (err) {
|
|
if (isNotFoundError(err)) {
|
|
try {
|
|
return require('import-global')(moduleName)
|
|
} catch (err2) {
|
|
if (isNotFoundError(err2)) {
|
|
const installCommand = getGlobalInstallCommand()
|
|
console.log()
|
|
console.log(
|
|
` Command ${chalk.cyan(`vue ${commandName}`)} requires a global addon to be installed.\n` +
|
|
` Please run ${chalk.cyan(`${installCommand} ${moduleName}`)} and try again.`
|
|
)
|
|
console.log()
|
|
process.exit(1)
|
|
} else {
|
|
throw err2
|
|
}
|
|
}
|
|
} else {
|
|
throw err
|
|
}
|
|
}
|
|
}
|