Skip to content

Commit

Permalink
fix(app generator): comply question phrasing with yo bat --help output
Browse files Browse the repository at this point in the history
  • Loading branch information
cueedee committed May 13, 2015
1 parent b9ad708 commit 272de8e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions generators/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,30 +169,30 @@ var AppGenerator = generators.Base.extend(
, {
type: 'input'
, name: 'authorName'
, message: 'What is your name?'
, message: 'What is the main author\'s name?'
, default: ( youtil.definedToString( this.options.auhorName ) || youtil.definedToString( this.user.git.name() ))
, validate: youtil.isNonBlank
, filter: clean
}
, {
type: 'input'
, name: 'authorEmail'
, message: 'What is your email address?'
, message: 'What is the main author\'s email address?'
, default: ( youtil.definedToString( this.options.auhorEmail ) || youtil.definedToString( this.user.git.email() ))
, validate: youtil.isNonBlank
, filter: _.trim
}
, {
type: 'input'
, name: 'authorUrl'
, message: 'If any, by what website URL would you like to be known?'
, message: 'If any, what is the main author\'s website url?'
, default: ( youtil.definedToString( this.options.auhorUrl ) || '' )
, filter: _.trim
}
, {
type: 'input'
, name: 'copyrightOwner'
, message: 'What is the full name of the copyright owner?'
, message: 'What is the full name of the copyright owner of this webapp?'
, default: function ( answers )
{
return answers.authorName;
Expand Down

0 comments on commit 272de8e

Please sign in to comment.