mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 06:37:23 +01:00
Add babel task as dependency
This commit is contained in:
@@ -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);
|
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.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);
|
gulp.start('grunt-build:prod', done);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user