-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplopfile.js
More file actions
32 lines (32 loc) · 887 Bytes
/
plopfile.js
File metadata and controls
32 lines (32 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// plop 入口文件,需要导出一个函数
// 此函数接收一个 plop 对象,用于创建生成器任务
module.exports = plop => {
plop.setGenerator('component',{
description:'create a component',
prompts:[
{
type:'input',
name:'name',
message:'component name',
default:'MyComponent'
}
],
actions:[
{
type:'add', // 添加全新文件
path:'src/components/{{name}}/{{name}}.js',
templateFile:'plop-templates/component.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.hbs'
}
]
})
}