-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta.js
53 lines (53 loc) · 1.23 KB
/
meta.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
module.exports = {
"prompts": {
"name": {
"type": "string",
"required": true,
"message": "Project name"
},
"title": {
"type": "string",
"required": true,
"message": "title of index.html"
},
"description": {
"type": "string",
"required": false,
"message": "Project description",
"default": "A Vue.js project"
},
"version": {
"type": "string",
"message": "Project version",
"default": "1.0.0"
},
"author": {
"type": "string",
"message": "Author"
},
"dependency": {
"type": "list",
"message": "vue and iview dependency mode",
"choices": [
{
"name": "totaly import",
"value": "totaly",
"short": "totaly"
},
/*
{
"name": "import by need",
"value": "byneed",
"short": "byneed"
},
*/
{
"name": "import by cdn",
"value": "cdn",
"short": "cdn"
},
]
}
},
"completeMessage": "To get started:\n\n {{^inPlace}}cd {{destDirName}}\n {{/inPlace}}npm install\n npm run dev\n\nDocumentation can be found at https://github.com/supaide/vue-app-template"
}