Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions eng/update-readme.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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`);

Expand Down Expand Up @@ -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}`
);
Expand Down
Loading