initial commit

This commit is contained in:
weiss
2020-03-25 16:36:52 +01:00
parent 204e15f3c4
commit a9b452be04
20 changed files with 530 additions and 1 deletions

9
prompts.js Normal file
View File

@@ -0,0 +1,9 @@
module.exports = [
{
type: 'input',
name: 'createVueConfigJs',
message: 'Create vue.config.js (overrides if already existing)',
validate: input => ['Y', 'y', 'N', 'n'].includes(input),
default: 'Y'
},
]