From e5c02823004bce45a5605935fb6879b4b2b48f44 Mon Sep 17 00:00:00 2001 From: booky10 Date: Sun, 3 Nov 2024 00:28:06 +0100 Subject: [PATCH] Fix gulp build sometimes erroring --- gulpfile.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.cjs b/gulpfile.cjs index 623f908..b8b7c77 100644 --- a/gulpfile.cjs +++ b/gulpfile.cjs @@ -99,5 +99,5 @@ gulp.task("copy-assets", () => { // Default task to run all tasks gulp.task( "default", - gulp.series("clean", gulp.parallel("scripts", "copy-html", "copy-assets","copy-translations")) + gulp.series("clean", gulp.parallel("scripts", "copy-html", "copy-assets"), "copy-translations") );