From edcdc865c43d2019bb376c0dafda06d2b85466d3 Mon Sep 17 00:00:00 2001 From: Steve Repsher Date: Mon, 7 Aug 2023 05:54:40 -0400 Subject: [PATCH] Remove test language from production (#17507) --- build-scripts/gulp/translations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-scripts/gulp/translations.js b/build-scripts/gulp/translations.js index e6f9c54472..3085b2b1d2 100755 --- a/build-scripts/gulp/translations.js +++ b/build-scripts/gulp/translations.js @@ -415,7 +415,7 @@ gulp.task("build-translation-write-metadata", () => gulp.task( "create-translations", gulp.series( - env.isProdBuild() ? (done) => done() : "create-test-translation", + ...(env.isProdBuild() ? [] : ["create-test-translation"]), "build-master-translation", "build-merged-translations", gulp.parallel(...splitTasks),