一.项目根目录下yarn add plop --dev
二.要在根目录新建plopfile.js(plop入口文件需要导出一个函数,此函数接受一个plop对象,用于创建生成器任务)
module.exports = plop => {
plop.setGenerator('component', {//这里定义生成器的名字component
description: 'application component',
prompts: [
{
type: 'input',
name: 'name',
message: 'component name'
}
],
actions: [
{
type: 'add',//代表添加文件
path: 'src/components/{{name}}/{{name}}.js',
templateFile: 'plop-templates/component.js.hbs'//添加的模板
},
{
type: 'add',
path: 'src/components/{{name}}/{{name}}.css',
templateFile: 'plop-templates/component.css.hbs'
},
{
type: 'add',
path: 'src/components/{{name}}/{{name}}.test.js',
templateFile: 'plop-templates/component.test.js.hbs'
}
]
})
}
三. plop-templates
根目录创建模板文件夹
里面都是作为模板存在,plopfile.js中templateFile属性值就是这里面找
网友评论