-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig_dev.json
58 lines (58 loc) · 1.82 KB
/
config_dev.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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"defaults": {
"framework": "vue",
"template": "lavasTemplate"
},
"frameworks": [
{
"value": "vue",
"name": "vue2",
"subList": {
"template": [
{
"value": "basic",
"name": "Basic",
"git": "https://github.com/lavas-project/lavas-template.git",
"branch": "release-basic",
"desc": "lavas 基础模版,包含 PWA 工程化相关必需内容"
},
{
"value": "appShell",
"name": "AppShell",
"git": "https://github.com/lavas-project/lavas-template.git",
"branch": "release-appshell",
"desc": "lavas appShell 模版,包含 PWA 工程化以及基础 UI 相关必需内容"
}
]
}
}
],
"schema": {
"framework": {
"type": "list",
"name": "前端框架",
"required": true,
"link": "frameworks",
"default": "vue",
"checkbox": false,
"disable": true,
"depLevel": 0,
"list": [],
"jsonType": "string",
"description": "项目所选择的基础框架"
},
"template": {
"type": "list",
"name": "模版类型",
"dependence": "framework",
"default": "Basic",
"ref": "template",
"depLevel": 1,
"checkbox": false,
"required": true,
"list": [],
"jsonType": "string",
"description": "初始化项目时选中的模版类型"
}
}
}