Skip to content
This repository has been archived by the owner on May 25, 2019. It is now read-only.

Commit

Permalink
Make all options on by default
Browse files Browse the repository at this point in the history
Like we have in generator-gulp-webapp.
  • Loading branch information
silvenon committed Jun 27, 2015
1 parent ead3e3f commit 0d335ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ module.exports = generators.Base.extend({
choices: [{
name: 'Sass',
value: 'includeSass',
checked: false
checked: true
}, {
name: 'Bootstrap',
value: 'includeBootstrap',
checked: true
}, {
name: 'Modernizr',
value: 'includeModernizr',
checked: false
checked: true
}]
}];

Expand Down

0 comments on commit 0d335ad

Please sign in to comment.