Skip to content

Commit 38d8b98

Browse files
authored
Update to gulp v4. (#59)
1 parent 91512cc commit 38d8b98

File tree

3 files changed

+2001
-616
lines changed

3 files changed

+2001
-616
lines changed

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ gulp.task('test', function () {
2222
});
2323

2424
gulp.task('watch', function () {
25-
gulp.watch(paths.scripts, ['lint', 'test']);
25+
gulp.watch(paths.scripts, gulp.parallel('lint', 'test'));
2626
});
2727

28-
gulp.task('default', ['lint', 'test', 'watch']);
28+
gulp.task('default', gulp.parallel('lint', 'test', 'watch'));

0 commit comments

Comments
 (0)