Skip to content

Commit

Permalink
style(app generator): remove unused twitter-bootstrap prop
Browse files Browse the repository at this point in the history
  • Loading branch information
cueedee committed Mar 17, 2015
1 parent 42f70ed commit 65696d2
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions generators/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,6 @@ module.exports = yeoman.generators.Base.extend(
, message: "If any, by what url would you like to be known?"
, default: ""
}
// , {
// name: "bootstrap"
// , type: "confirm"
// , message: "Would you like some Twitter Bootstrap with that?"
// , default: true
// }

, {
name: "multiLanguage"
, type: "confirm"
Expand Down Expand Up @@ -82,7 +75,6 @@ module.exports = yeoman.generators.Base.extend(
this.authorName = props.authorName;
this.authorEmail = props.authorEmail.trim();
this.authorUrl = props.authorUrl.trim();
this.bootstrap = props.bootstrap;
this.ie8 = props.ie8;
this.multiLanguage = props.multiLanguage;
this.demo = props.demo;
Expand Down Expand Up @@ -232,10 +224,5 @@ module.exports = yeoman.generators.Base.extend(
, install: function()
{
this.installDependencies();

// if( this.bootstrap === true )
// {
// this.bowerInstall( "git://github.com/twbs/bootstrap-sass.git", { save: true } );
// }
}
} );

0 comments on commit 65696d2

Please sign in to comment.