From 25a1ab40a768fd738719f43ffcfeaeea2887750f Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Sun, 16 Jun 2024 09:43:05 +0200 Subject: [PATCH] docs: document unstable icu sort order (#2948) --- scripts/generate-locales.ts | 1 + 1 file changed, 1 insertion(+) 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 ); }