-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplopfile.js
More file actions
62 lines (61 loc) · 1.4 KB
/
plopfile.js
File metadata and controls
62 lines (61 loc) · 1.4 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
export default function Plopfile(plop) {
plop.setGenerator('component', {
description: 'Create a new component',
prompts: [
{
type: 'input',
name: 'parentPath',
message: 'src/components/{path please}',
},
{
type: 'input',
name: 'name',
message: 'Component name',
},
],
actions: [
{
type: 'add',
path: 'src/components/{{parentPath}}/{{name}}/{{name}}.tsx',
templateFile: 'plop-templates/component/Component.tsx.hbs',
},
{
type: 'add',
path: 'src/components/{{parentPath}}/{{name}}/index.ts',
templateFile: 'plop-templates/component/index.ts.hbs',
},
{
type: 'add',
path: 'src/components/{{parentPath}}/{{name}}/{{name}}.stories.tsx',
templateFile: 'plop-templates/component/Component.stories.tsx.hbs',
},
{
type: 'add',
path: 'src/components/{{parentPath}}/{{name}}/{{name}}.test.tsx',
templateFile: 'plop-templates/component/Component.test.tsx.hbs',
},
],
});
plop.setGenerator('icon', {
description: 'Create a new icon',
prompts: [
{
type: 'input',
name: 'name',
message: 'Icon name',
},
],
actions: [
{
type: 'add',
path: 'src/components/icons/{{name}}/{{name}}.tsx',
templateFile: 'plop-templates/icon/Icon.tsx.hbs',
},
{
type: 'append',
path: 'src/components/icons/index.ts',
template: "export * from './{{name}}/{{name}}';",
},
],
});
}