24 lines
575 B
JavaScript
24 lines
575 B
JavaScript
module.exports = {
|
|
"helpers": {
|
|
"if_or": function (v1, v2, options) {
|
|
if (v1 || v2) {
|
|
return options.fn(this);
|
|
}
|
|
|
|
return options.inverse(this);
|
|
}
|
|
},
|
|
"prompts": {
|
|
"name": {
|
|
"type": "string",
|
|
"required": true,
|
|
"message": "Project name"
|
|
},
|
|
"author": {
|
|
"type": "string",
|
|
"message": "Author"
|
|
}
|
|
},
|
|
"completeMessage": "To get started:\n\n {{^inPlace}}cd {{destDirName}}\n {{/inPlace}}npm install\n npm run dev\n\nDocumentation can be found at https://vuejs-templates.github.io/webpack"
|
|
};
|