You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
892 B
39 lines
892 B
9 months ago
|
const toUpperCase = (str) => str.charAt(0).toUpperCase() + str.slice(1)
|
||
|
|
||
|
module.exports = {
|
||
|
description: 'Create vue component',
|
||
|
prompts: [
|
||
|
{
|
||
|
type: 'input',
|
||
|
name: 'name',
|
||
|
message: '请输入组件名称(Please enter the component name)'
|
||
|
}
|
||
|
],
|
||
|
actions: (data) => {
|
||
|
const { name } = data
|
||
|
const upperFirstName = toUpperCase(name)
|
||
|
|
||
|
const actions = []
|
||
|
if (name) {
|
||
|
actions.push({
|
||
|
type: 'add',
|
||
|
path: `./src/components/${upperFirstName}/src/${upperFirstName}.vue`,
|
||
|
templateFile: './plop/component/component.hbs',
|
||
|
data: {
|
||
|
name,
|
||
|
upperFirstName
|
||
|
}
|
||
|
}, {
|
||
|
type: 'add',
|
||
|
path: `./src/components/${upperFirstName}/index.ts`,
|
||
|
templateFile: './plop/component/index.hbs',
|
||
|
data: {
|
||
|
upperFirstName
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
|
||
|
return actions
|
||
|
}
|
||
|
}
|