mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-05-18 03:38:51 +00:00
Add babel task as dependency
This commit is contained in:
parent
9b8e6534d0
commit
050be4a3db
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue