magicseth
magicseth4w ago

api.d.ts sorted differently on Windows?

One of our developers uses Windows, and we are having a lot of merge conflicts with api.d.ts It seems like Windows sorts Capital LetTers differently than Mac or Linux. Is that something the generator could accomodate for?
5 Replies
Convex Bot
Convex Bot4w ago
Thanks for posting in <#1088161997662724167>. Reminder: If you have a Convex Pro account, use the Convex Dashboard to file support tickets. - Provide context: What are you trying to achieve, what is the end-user interaction, what are you seeing? (full error message, command output, etc.) - Use search.convex.dev to search Docs, Stack, and Discord all at once. - Additionally, you can post your questions in the Convex Community's <#1228095053885476985> channel to receive a response from AI. - Avoid tagging staff unless specifically instructed. Thank you!
ballingt
ballingt4w ago
@magicseth wow, thanks for the heads up! I'd think that this line https://github.com/get-convex/convex-js/blob/45f7c4196003a4d827f925d3781ebe64278c5546/src/bundler/index.ts#L30 would mean we didn't have to worry about this, but there must be something else. Can you give us an example of two that get sorted differently?
magicseth
magicsethOP4w ago
No description
magicseth
magicsethOP4w ago
the AI suggests: For best results, always explicitly sort your directory listings with .localeCompare() and numeric: true. also a different locale for this develoepr and of course locale and OS might be red herrings...
ballingt
ballingt4w ago
ah thanks, yeah bet it's one of these going to use
function consistentPathSort(a: Dirent, b: Dirent) {
return a.name.localeCompare(b.name, "en", {
sensitivity: "base",
caseFirst: "upper",
});
}
function consistentPathSort(a: Dirent, b: Dirent) {
return a.name.localeCompare(b.name, "en", {
sensitivity: "base",
caseFirst: "upper",
});
}
here, should be in the next release

Did you find this page helpful?