Skip to content

Commit a5decbc

Browse files
committed
fix(gen): use bool for bootstrap filters
Changes: - `filters.bootstrap` and `filters.uibootstrap` will be true or false only Closes #496
1 parent b67d2b6 commit a5decbc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ var AngularFullstackGenerator = yeoman.generators.Base.extend({
114114
this.filters[answers.markup] = true;
115115
this.filters[answers.stylesheet] = true;
116116
this.filters[answers.router] = true;
117-
this.filters.bootstrap = answers.bootstrap;
118-
this.filters.uibootstrap = answers.uibootstrap;
117+
this.filters.bootstrap = !!answers.bootstrap;
118+
this.filters.uibootstrap = !!answers.uibootstrap;
119119
cb();
120120
}.bind(this));
121121
},

0 commit comments

Comments
 (0)