forked from demisto/content-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plopfile.js
97 lines (96 loc) · 1.95 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
const config = (plop) => {
plop.setGenerator("details", {
description: "Generate marketplace details page",
prompts: [
{
type: "input",
name: "id",
message: "Pack ID",
},
{
type: "input",
name: "name",
message: "Pack Name",
},
{
type: "input",
name: "description",
message: "Pack Description",
},
{
type: "input",
name: "author",
message: "Pack Author",
},
{
type: "input",
name: "currentVersion",
message: "Pack Current Version",
},
{
type: "input",
name: "versionInfo",
message: "Pack Version Info",
},
{
type: "input",
name: "authorImage",
message: "Pack Author Image",
},
{
type: "input",
name: "readme",
message: "Pack README",
},
{
type: "input",
name: "support",
message: "Pack Support",
},
{
type: "input",
name: "created",
message: "Pack created date",
},
{
type: "input",
name: "updated",
message: "Pack updated date",
},
{
type: "input",
name: "certification",
message: "Pack certification",
},
{
type: "list",
name: "useCases",
message: "Pack use cases",
},
{
type: "list",
name: "integrations",
message: "Pack integrations",
},
{
type: "list",
name: "contentItems",
message: "Pack content items",
},
{
type: "input",
name: "changeLog",
message: "Pack changelog",
},
],
actions: [
{
type: "add",
path: "src/pages/marketplace/details/{{id}}/index.js",
templateFile: "templates/details.hbs",
force: true,
},
],
});
};
module.exports = config;