From 98a89c8fb7ca677d8e6542a8e66e1cee77888344 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sun, 16 May 2021 11:33:19 +0200 Subject: [PATCH] [ticket/16775] Use export.defaults in gulpfile PHPBB3-16775 --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index e92eac50e5..2feb2e171e 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -57,4 +57,4 @@ gulp.task('watch', gulp.series(() => { gulp.watch('phpBB/styles/prosilver/theme/*.css', gulp.series('css')); })); -gulp.task('default', gulp.series('css', 'watch')); +exports.default = gulp.series('css', 'watch');