fix(build): `gulp build.js.prod` should call `benchpress.js.prod`

This commit is contained in:
Tobias Bosch 2014-12-08 11:44:44 -08:00
parent c3dc373ec4
commit bc6f0dba46
1 changed files with 1 additions and 1 deletions

View File

@ -353,7 +353,7 @@ gulp.task('build.js.dev', function() {
gulp.task('build.js.prod', function() {
return runSequence(
['build/deps.js.prod', 'build/transpile.js.prod', 'build/html.js.prod'],
'build/benchpress.js.dev'
'build/benchpress.js.prod'
);
});