Fix gulp build sometimes erroring

This commit is contained in:
booky10 2024-11-03 00:28:06 +01:00
parent a8f55d0ae6
commit e5c0282300
No known key found for this signature in database
GPG key ID: 46BEB2CFB49699FE

View file

@ -99,5 +99,5 @@ gulp.task("copy-assets", () => {
// Default task to run all tasks // Default task to run all tasks
gulp.task( gulp.task(
"default", "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")
); );