-
Notifications
You must be signed in to change notification settings - Fork 11
/
meta.json
45 lines (45 loc) · 960 Bytes
/
meta.json
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
{
"postCompile": {
"type": "confirm",
"message": "Use post-compile?"
},
"importType": {
"type": "list",
"message": "Import type",
"choices": [
{
"name": "partly, import component on demand, which makes the size of imported code lighter",
"value": "partly",
"short": "Partly",
"checked": true
},
{
"name": "fully, import all the components",
"value": "fully",
"short": "Fully"
}
]
},
"theme": {
"when": "postCompile",
"type": "confirm",
"message": "Custom theme?"
},
"rem": {
"when": "postCompile",
"type": "confirm",
"message": "Use rem layout?",
"default": false
},
"amfeFlexible": {
"when": "postCompile && rem",
"type": "confirm",
"message": "Use amfe-flexible?"
},
"vw": {
"when": "postCompile && !rem",
"type": "confirm",
"message": "Use vw layout?",
"default": false
}
}