-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplopfile.js
More file actions
42 lines (42 loc) · 1.13 KB
/
plopfile.js
File metadata and controls
42 lines (42 loc) · 1.13 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
module.exports = function (plop) {
plop.setGenerator("component", {
description: "Scaffold MCP component with test and story",
prompts: [
{
type: "input",
name: "name",
message: "Component name (e.g., FccIdCard)",
},
{
type: "confirm",
name: "withStyles",
message: "Include CSS module?",
default: false,
},
],
actions: [
{
type: "add",
path: "components/{{pascalCase name}}/index.tsx",
templateFile: "plop-templates/component.hbs",
},
{
type: "add",
path: "components/{{pascalCase name}}/{{pascalCase name}}.test.tsx",
templateFile: "plop-templates/test.hbs",
},
{
type: "add",
path: "components/{{pascalCase name}}/{{pascalCase name}}.stories.tsx",
templateFile: "plop-templates/story.hbs",
},
{
type: "add",
path: "components/{{pascalCase name}}/{{pascalCase name}}.module.css",
templateFile: "plop-templates/styles.hbs",
skipIfExists: true,
when: (answers) => answers.withStyles,
},
],
});
};