From 58d82917b431c60dbe58be40eb3d4141c18c4215 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 May 2026 00:09:38 +0000 Subject: [PATCH] chore: publish from staged --- eng/update-readme.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/update-readme.mjs b/eng/update-readme.mjs index 147a91c1..1a80cedd 100644 --- a/eng/update-readme.mjs +++ b/eng/update-readme.mjs @@ -303,7 +303,7 @@ function generateInstructionsSection(instructionsDir) { }); // Sort by title alphabetically - instructionEntries.sort((a, b) => a.title.localeCompare(b.title)); + instructionEntries.sort((a, b) => a.title.localeCompare(b.title, "en")); console.log(`Found ${instructionEntries.length} instruction files`); @@ -673,7 +673,7 @@ function generateUnifiedModeSection(cfg) { return { file, filePath, title: extractTitle(filePath) }; }); - entries.sort((a, b) => a.title.localeCompare(b.title)); + entries.sort((a, b) => a.title.localeCompare(b.title, "en")); console.log( `Unified mode generator: ${entries.length} files for extension ${extension}` );