From 050be4a3db65b096e6cb178762dab4d7553a2e4e Mon Sep 17 00:00:00 2001 From: Blade Barringer Date: Mon, 21 Sep 2015 12:01:06 -0500 Subject: [PATCH] Add babel task as dependency --- tasks/gulp-build.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/gulp-build.js b/tasks/gulp-build.js index a45b591d9e..8b0b752ca2 100644 --- a/tasks/gulp-build.js +++ b/tasks/gulp-build.js @@ -9,7 +9,7 @@ gulp.task('build', () => { } }); -gulp.task('build:dev', ['prepare:staticNewStuff'], (done) => { +gulp.task('build:dev', ['babel:common', 'prepare:staticNewStuff'], (done) => { gulp.start('grunt-build:dev', done); }); @@ -17,6 +17,6 @@ gulp.task('build:dev:watch', ['build:dev'], () => { gulp.watch(['website/public/**/*.styl', 'common/script/*']); }); -gulp.task('build:prod', ['prepare:staticNewStuff'], (done) => { +gulp.task('build:prod', ['babel:common', 'prepare:staticNewStuff'], (done) => { gulp.start('grunt-build:prod', done); });