Merge pull request #74 from booky10/fix/translation-copy

Fix gulp build sometimes erroring
This commit is contained in:
MathMan05 2024-11-02 21:32:10 -05:00 committed by GitHub
commit 7d850559da
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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")
);