-
Notifications
You must be signed in to change notification settings - Fork 202
/
meta.json
48 lines (48 loc) · 1.2 KB
/
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
46
47
48
{
"prompts": {
"name": {
"type": "string",
"required": true,
"message": "Project name"
},
"description": {
"type": "string",
"required": false,
"message": "Project description",
"default": "My Superb Vue Project"
},
"author": {
"type": "string",
"message": "Author"
},
"eslint": {
"type": "confirm",
"message": "Do you want to use ESLint?"
},
"jsx": {
"type": "confirm",
"message": "Generate components in JSX format?",
"default": false
},
"electron": {
"type": "confirm",
"message": "Support Electron?",
"default": false
},
"testcafe": {
"type": "confirm",
"message": "Add testcafe to run integration tests?",
"default": false
}
},
"filters": {
"client/components/*.vue": "!jsx",
"client/components/**/*.{js,css}": "jsx",
"client/views/*.vue": "!jsx",
"client/views/**/*.{js,css}": "jsx",
"app/*": "electron",
".eslintrc": "eslint",
"test/e2e/*": "testcafe"
},
"completeMessage": "To get started:\n\n cd {{destDirName}}\n npm install\n npm run dev{{#electron}}\n\nIn another tab:\n\n npm run app{{/electron}}"
}