mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-14 11:20:20 -06:00
72 lines
1.9 KiB
JavaScript
72 lines
1.9 KiB
JavaScript
const chalk = require('chalk')
|
|
const invoke = require('./invoke')
|
|
const { loadOptions } = require('./options')
|
|
const { installPackage } = require('./util/installDeps')
|
|
const {
|
|
log,
|
|
error,
|
|
hasProjectYarn,
|
|
resolvePluginId,
|
|
resolveModule,
|
|
loadModule
|
|
} = require('@vue/cli-shared-utils')
|
|
|
|
async function add (pluginName, options = {}, context = process.cwd()) {
|
|
// special internal "plugins"
|
|
if (/^(@vue\/)?router$/.test(pluginName)) {
|
|
return addRouter(context)
|
|
}
|
|
if (/^(@vue\/)?vuex$/.test(pluginName)) {
|
|
return addVuex(context)
|
|
}
|
|
|
|
const packageName = resolvePluginId(pluginName)
|
|
|
|
log()
|
|
log(`📦 Installing ${chalk.cyan(packageName)}...`)
|
|
log()
|
|
|
|
const packageManager = loadOptions().packageManager || (hasProjectYarn(context) ? 'yarn' : 'npm')
|
|
await installPackage(context, packageManager, options.registry, packageName)
|
|
|
|
log(`${chalk.green('✔')} Successfully installed plugin: ${chalk.cyan(packageName)}`)
|
|
log()
|
|
|
|
const generatorPath = resolveModule(`${packageName}/generator`, context)
|
|
if (generatorPath) {
|
|
invoke(pluginName, options, context)
|
|
} else {
|
|
log(`Plugin ${packageName} does not have a generator to invoke`)
|
|
}
|
|
}
|
|
|
|
async function addRouter (context) {
|
|
const inquirer = require('inquirer')
|
|
const options = await inquirer.prompt([{
|
|
name: 'routerHistoryMode',
|
|
type: 'confirm',
|
|
message: `Use history mode for router? ${chalk.yellow(`(Requires proper server setup for index fallback in production)`)}`
|
|
}])
|
|
invoke.runGenerator(context, {
|
|
id: 'core:router',
|
|
apply: loadModule('@vue/cli-service/generator/router', context),
|
|
options
|
|
})
|
|
}
|
|
|
|
async function addVuex (context) {
|
|
invoke.runGenerator(context, {
|
|
id: 'core:vuex',
|
|
apply: loadModule('@vue/cli-service/generator/vuex', context)
|
|
})
|
|
}
|
|
|
|
module.exports = (...args) => {
|
|
return add(...args).catch(err => {
|
|
error(err)
|
|
if (!process.env.VUE_CLI_TEST) {
|
|
process.exit(1)
|
|
}
|
|
})
|
|
}
|