-
Notifications
You must be signed in to change notification settings - Fork 0
/
plopfile.js
149 lines (139 loc) · 2.82 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
module.exports = function (plop) {
/**
* New .npmrc file
*/
plop.setGenerator('npmrc', {
description: 'Generates a new .npmrc file.',
prompts: [
{
type: 'input',
name: 'token',
message: 'Provide your GitHub PAT (Personal Access Token).',
},
],
actions() {
return [
{
type: 'add',
path: './.npmrc',
templateFile: './templates/npmrc/npmrc.hbs',
},
];
},
});
/**
* New package
*/
plop.setGenerator('package', {
description: 'Generates a package.',
prompts: [
{
type: 'list',
name: 'type',
message: 'Select vue or js package.',
choices: ['vue', 'js'],
},
{
type: 'input',
name: 'name',
message: 'Name your package.',
},
{
type: 'input',
name: 'description',
message: 'Describe your package.',
},
],
actions(data) {
/**
* Root
*/
const root = [
{
type: 'add',
path: './packages/{{dashCase name}}/package.json',
templateFile: './templates/package/package-{{type}}.hbs',
},
{
type: 'add',
path: './packages/{{dashCase name}}/README.md',
templateFile: './templates/package/readme-{{type}}.hbs',
},
...(data.type === 'vue'
? [
{
type: 'add',
path:
'./packages/{{dashCase name}}/babel.config.js',
templateFile:
'./templates/package/babel.config.hbs',
},
]
: []),
];
/**
* Src
*/
const srcPath = data.type === 'vue' ? '/src' : '';
const srcName = data.type === 'vue' ? '{{dashCase name}}' : 'index';
const src = [
...(data.type === 'vue'
? [
{
type: 'add',
path: `./packages/{{dashCase name}}${srcPath}/entry.js`,
templateFile:
'./templates/package/src/entry.hbs',
},
]
: []),
{
type: 'add',
path: `./packages/{{dashCase name}}${srcPath}/${srcName}.{{type}}`,
templateFile: './templates/package/src/_{{type}}.hbs',
},
];
/**
* Dev
*/
const dev = [
{
type: 'add',
path: './packages/{{dashCase name}}/dev/entry.js',
templateFile:
'./templates/package/dev/serve-{{type}}-entry.hbs',
},
{
type: 'add',
path: './packages/{{dashCase name}}/dev/serve.{{type}}',
templateFile: './templates/package/dev/serve-{{type}}.hbs',
},
];
/**
* Test
*/
const test = [
{
type: 'add',
path: './packages/{{dashCase name}}/test/.eslintrc.js',
templateFile: './templates/package/test/eslintrc.hbs',
},
{
type: 'add',
path:
'./packages/{{dashCase name}}/test/{{properCase name}}.spec.js',
templateFile: './templates/package/test/spec.hbs',
},
];
/**
* Returns
*/
return [
...root,
...src,
...dev,
...(data.type === 'vue' ? test : []),
];
},
});
};