Skip to content

Commit

Permalink
Fix tap-run+browserfiy is not valid
Browse files Browse the repository at this point in the history
  • Loading branch information
unional committed Jun 3, 2016
1 parent 8f7f276 commit f34c11e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions generators/beta/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ module.exports = yeoman.Base.extend({
default:
return [
// tsify not working with TS 1.9 yet
// { name: 'tap-run + browserify', value: 'tap-run+browserify' },
{ name: 'tap-run + jspm', value: 'tap-run+jspm' },
// { name: 'tape-run + browserify', value: 'tape-run+browserify' },
{ name: 'tape-run + jspm', value: 'tape-run+jspm' },
];
}
},
Expand Down Expand Up @@ -237,7 +237,7 @@ module.exports = yeoman.Base.extend({
repositoryOrganization: undefined,
license: 'MIT',
testFramework: 'blue-tape',
browserTestHarness: 'tape-run+browserify'
browserTestHarness: 'tape-run+jspm'
};

this.configTemplate = rc('generator-typings', defaultConfigTemplate);
Expand Down Expand Up @@ -558,8 +558,8 @@ module.exports = yeoman.Base.extend({
case 'blue-tape':
default:
return [
{ name: 'tap-run + browserify', value: 'tap-run+browserify' },
{ name: 'tap-run + jspm', value: 'tap-run+jspm' },
// { name: 'tape-run + browserify', value: 'tape-run+browserify' },
{ name: 'tape-run + jspm', value: 'tape-run+jspm' },
];
}
},
Expand Down

0 comments on commit f34c11e

Please sign in to comment.