forked from doug-wade/sizzy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plopfile.js
69 lines (56 loc) · 1.38 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
module.exports = function (plop) {
/* Helpers */
plop.addHelper('upperCase', function (text) {
return text.toUpperCase();
});
var files = {
index: 'plop-templates/index.js',
indexConnected: 'plop-templates/index-connected.js',
styles: 'plop-templates/styles.js'
}
/* Files */
var createIndex = {
type: 'add',
path: 'src/components/{{pascalCase name}}/index.js',
templateFile: files.index
};
/* Files */
var createView = {
type: 'add',
path: 'src/views/{{pascalCase name}}/index.js',
templateFile: files.index
};
var createStyle = {
type: 'add',
path: 'src/components/{{pascalCase name}}/styles.js',
templateFile: files.styles
}
var createViewStyle = {
type: 'add',
path: 'src/views/{{pascalCase name}}/styles.js',
templateFile: files.styles
}
/* Questions */
var getComponentName = {
type: 'input',
name: 'name',
message: 'What is the component name?',
validate: function (value) {
if ((/.+/).test(value)) {
return true;
}
return 'name is required';
}
};
/* Options */
plop.setGenerator('Component', {
description: 'Component',
prompts: [getComponentName],
actions: [createIndex, createStyle]
});
plop.setGenerator('View', {
description: 'View',
prompts: [getComponentName],
actions: [createView, createViewStyle]
});
};