Skip to content

Commit e3a5ac8

Browse files
committed
chore: update npm dependencies
1 parent 8d00395 commit e3a5ac8

File tree

3 files changed

+402
-949
lines changed

3 files changed

+402
-949
lines changed

gulpfile.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ gulp.task('deploy:other', function () {
3232
.pipe(exClient.dest(targetConfiguration))
3333
})
3434

35-
gulp.task('deploy', ['deploy:other'])
35+
gulp.task('deploy', gulp.series('deploy:other'))
3636

37-
gulp.task('watch', ['deploy'], function () {
38-
gulp.watch(otherPaths, ['deploy:other'])
39-
})
37+
gulp.task('watch', gulp.series('deploy', function () {
38+
gulp.watch(otherPaths, gulp.series('deploy:other'))
39+
}))
4040

41-
gulp.task('default', ['watch'])
41+
gulp.task('default', gulp.series('watch'))

0 commit comments

Comments
 (0)