Skip to content

Commit

Permalink
chore: update npm dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
line-o committed Apr 1, 2020
1 parent 8d00395 commit e3a5ac8
Show file tree
Hide file tree
Showing 3 changed files with 402 additions and 949 deletions.
10 changes: 5 additions & 5 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ gulp.task('deploy:other', function () {
.pipe(exClient.dest(targetConfiguration))
})

gulp.task('deploy', ['deploy:other'])
gulp.task('deploy', gulp.series('deploy:other'))

gulp.task('watch', ['deploy'], function () {
gulp.watch(otherPaths, ['deploy:other'])
})
gulp.task('watch', gulp.series('deploy', function () {
gulp.watch(otherPaths, gulp.series('deploy:other'))
}))

gulp.task('default', ['watch'])
gulp.task('default', gulp.series('watch'))
Loading

0 comments on commit e3a5ac8

Please # to comment.