-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplopfile.js
39 lines (39 loc) · 1.11 KB
/
plopfile.js
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
module.exports = function (plop) {
plop.setGenerator("component", {
description: "create files for a new component",
prompts: [
{
type: "input",
name: "name",
message: "name of component",
},
],
actions: [
{
type: "add",
path: "src/components/{{properCase name}}/index.ts",
templateFile: "plop/component/index.hbs",
},
{
type: "add",
path: "src/components/{{properCase name}}/{{properCase name}}.tsx",
templateFile: "plop/component/component.hbs",
},
{
type: "add",
path: "src/components/{{properCase name}}/{{properCase name}}.styles.ts",
templateFile: "plop/component/component.styles.hbs",
},
{
type: "add",
path: "src/components/{{properCase name}}/{{properCase name}}.stories.tsx",
templateFile: "plop/component/component.stories.hbs",
},
{
type: "add",
path: "src/components/{{properCase name}}/{{properCase name}}.test.tsx",
templateFile: "plop/component/component.test.hbs",
},
],
})
}