@pgsz/pg-cli
Version:
pg-cli脚手架的自我学习
20 lines (17 loc) • 724 B
JavaScript
const chalk = require('chalk')
module.exports = (api) => {
api.injectFeature({
name: 'Router',
value: 'router',
description: 'Structure the app with dynamic pages',
link: 'https://router.vuejs.org/',
})
api.injectPrompt({
name: 'historyMode',
when: answers => answers.features.includes('router'),
type: 'confirm',
message: `Use history mode for router? ${chalk.yellow(`(Requires proper server setup for index fallback in production)`)}`,
description: `By using the HTML5 History API, the URLs don't need the '#' character anymore.`,
link: 'https://router.vuejs.org/guide/essentials/history-mode.html',
})
}