Skip to content

Commit 90ff36e

Browse files
committed
fix(gen): default grunt filter
This takes care of the README.md template as well as allowing other template updates related to the grunt/gulp implementation
1 parent 37a1890 commit 90ff36e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

app/index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,11 @@ var AngularFullstackGenerator = yeoman.generators.Base.extend({
287287
return answers.testing === 'mocha';
288288
}
289289
}], function (answers) {
290+
/**
291+
* Default to grunt until gulp support is implemented
292+
*/
293+
this.filters.grunt = true;
294+
290295
this.filters[answers.testing] = true;
291296
if (answers.testing === 'mocha') {
292297
this.filters.jasmine = false;

0 commit comments

Comments
 (0)