aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/generate-locales.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/generate-locales.ts b/scripts/generate-locales.ts
index 2d6c252e..b8103ee3 100644
--- a/scripts/generate-locales.ts
+++ b/scripts/generate-locales.ts
@@ -298,6 +298,7 @@ async function normalizeLocaleFile(filePath: string, definitionKey: string) {
// limit entries to 1k
.slice(0, 1000)
// sort entries alphabetically
+ // We cannot sort the entries locale aware as the sort order is not stable within node versions #2905
.sort() as T
);
}