diff --git a/scripts/generate-locales.ts b/scripts/generate-locales.ts index 2d6c252ecef..b8103ee3d5b 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 ); }