Skip to content

Commit

Permalink
feat: Store the results of asking questions (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
orta authored and macklinu committed May 20, 2017
1 parent a19b8f3 commit 2d210c1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,24 +63,28 @@ export default class extends Generator {
name: 'authorName',
message: 'What is your full name (for npm authorship)?',
default: async () => await defaultName(),
store: true,
},
{
type: 'input',
name: 'authorEmail',
message: 'What is your email (for npm authorship)?',
default: async () => await defaultEmail(),
store: true,
},
{
type: 'input',
name: 'githubUsername',
message: 'What is your GitHub username?',
default: async () => await defaultGitHubUsername(),
store: true,
},
{
type: 'confirm',
name: 'useYarn',
message: 'Use Yarn?',
default: true,
store: true,
},
])

Expand Down

0 comments on commit 2d210c1

Please sign in to comment.