Skip to content

Commit

Permalink
Merge pull request #10 from arthurvr/store
Browse files Browse the repository at this point in the history
Store author information
  • Loading branch information
kevva committed Apr 5, 2015
2 parents f13edf5 + 34607bf commit 162d7c9
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,20 @@ module.exports = yeoman.generators.Base.extend({
default: 'MIT'
}, {
name: 'githubUsername',
message: 'GitHub username'
message: 'GitHub username',
store: true
}, {
name: 'authorName',
message: 'Author\'s Name'
message: 'Author\'s Name',
store: true
}, {
name: 'authorEmail',
message: 'Author\'s Email'
message: 'Author\'s Email',
store: true
}, {
name: 'authorUrl',
message: 'Author\'s Homepage'
message: 'Author\'s Homepage',
store: true
}];

this.currentYear = (new Date()).getFullYear();
Expand Down

0 comments on commit 162d7c9

Please sign in to comment.