forked from vuejs-templates/webpack-simple
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmeta.json
36 lines (36 loc) · 1.03 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
{
"prompts": {
"name": {
"type": "string",
"required": true,
"label": "Project name"
},
"description": {
"type": "string",
"required": true,
"label": "Project description",
"default": "A Vue.js Webpack Wordpress project"
},
"author": {
"type": "string",
"label": "Author"
},
"preprocessor": {
"message": "Use a CSS pre-processor?",
"type": "list",
"choices": ["None", "LESS", "Sass"],
"default": "None"
},
"dashboard": {
"message": "Use Webpack Dashboard? ( https://github.com/FormidableLabs/webpack-dashboard )",
"type": "confirm",
"default": false
},
"local-server": {
"type": "string",
"label": "Local Site's dev server (MAMP) URL ( e.g. http://localhost:8888/, http://mysite.dev )",
"default": false
}
},
"completeMessage": "{{#inPlace}}To get started:\n\n npm install\n npm run dev.{{else}}To get started:\n\n cd {{destDirName}}\n npm install\n npm run dev.{{/inPlace}}"
}