Skip to content

Commit

Permalink
fix: update prompts ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
vinayakkulkarni committed Sep 14, 2020
1 parent 0f64d46 commit c364a85
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions prompts.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,6 @@ module.exports = [
message: 'What is your name?',
store: true,
},
{
name: 'username',
message: 'What is your GitHub username?',
default: '{gitUser.name}',
filter: (val) => val.toLowerCase(),
store: true,
},
{
name: 'email',
message: 'What is your email?',
Expand All @@ -36,6 +29,13 @@ module.exports = [
filter: (val) => val.toLowerCase(),
store: true,
},
{
name: 'username',
message: 'What is your GitHub username?',
default: '{gitUser.username}',
filter: (val) => val.toLowerCase(),
store: true,
},
{
name: 'docs',
message: 'Would you like to write docs?',
Expand Down

0 comments on commit c364a85

Please sign in to comment.