We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b67d2b6 commit a5decbcCopy full SHA for a5decbc
app/index.js
@@ -114,8 +114,8 @@ var AngularFullstackGenerator = yeoman.generators.Base.extend({
114
this.filters[answers.markup] = true;
115
this.filters[answers.stylesheet] = true;
116
this.filters[answers.router] = true;
117
- this.filters.bootstrap = answers.bootstrap;
118
- this.filters.uibootstrap = answers.uibootstrap;
+ this.filters.bootstrap = !!answers.bootstrap;
+ this.filters.uibootstrap = !!answers.uibootstrap;
119
cb();
120
}.bind(this));
121
},
0 commit comments