We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e66d020 commit 4cc2da6Copy full SHA for 4cc2da6
src/generators/app/index.js
@@ -290,13 +290,14 @@ export class Generator extends Base {
290
name: 'buildtool',
291
message: 'Would you like to use Gulp or Grunt?',
292
choices: ['Grunt', 'Gulp'],
293
- default: 0,
+ default: 1,
294
filter: val => val.toLowerCase()
295
}, {
296
type: 'list',
297
name: 'testing',
298
message: 'What would you like to write tests with?',
299
- choices: [ 'Jasmine', 'Mocha + Chai + Sinon'],
+ choices: ['Jasmine', 'Mocha + Chai + Sinon'],
300
301
filter: function(val) {
302
return {
303
'Jasmine': 'jasmine',
0 commit comments