Last active
March 21, 2019 16:31
-
-
Save misterdev/1138b0f67277db8cb3bdc908cb38cbdb to your computer and use it in GitHub Desktop.
5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
prompting() { | |
/* ... */ | |
return this.prompt([ | |
/* ... */ | |
]).then (answers => { | |
this.answers = answers; | |
this.answers.name = (answers.name !== '') ? answers.name.toLowerCase() : 'my-vue-project'; | |
this.answers.entry = (answers.entry !== '') ? answers.entry : 'main'; | |
// => We do this for each answer | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment