From b8e3d91d3fc4b68f883d688233a69f8a4276698a Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Mon, 7 Aug 2023 14:25:57 -0700 Subject: [PATCH] Fix function declaration inconsistency --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index ee0379eda004..f70b175ee9d3 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -668,7 +668,7 @@ const maybeUpdateWebappStrings = () => { ); }; -function maybeBuildWebapps() { +const maybeBuildWebapps = () => { if (!shouldBuildWebapps()) return noop; return gulp.parallel(skillmap, authcode, multiplayer); }