Skip to content

Commit 4cc2da6

Browse files
committed
feat(gen): default to gulp, mocha
[skip ci]
1 parent e66d020 commit 4cc2da6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: src/generators/app/index.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -290,13 +290,14 @@ export class Generator extends Base {
290290
name: 'buildtool',
291291
message: 'Would you like to use Gulp or Grunt?',
292292
choices: ['Grunt', 'Gulp'],
293-
default: 0,
293+
default: 1,
294294
filter: val => val.toLowerCase()
295295
}, {
296296
type: 'list',
297297
name: 'testing',
298298
message: 'What would you like to write tests with?',
299-
choices: [ 'Jasmine', 'Mocha + Chai + Sinon'],
299+
choices: ['Jasmine', 'Mocha + Chai + Sinon'],
300+
default: 1,
300301
filter: function(val) {
301302
return {
302303
'Jasmine': 'jasmine',

0 commit comments

Comments
 (0)