We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d556aef commit 96477ccCopy full SHA for 96477cc
src/lib/repositories.ts
@@ -61,6 +61,7 @@ const repos: Record<Category, { name: string; repos: RepoInfo[] }> = {
61
{
62
repoName: "language-tools",
63
metadataFromTag: tag => {
64
+ if (/@\d/.test(tag)) return splitByLastAt(tag);
65
const lastIndex = tag.lastIndexOf("-");
66
return [tag.substring(0, lastIndex), tag.substring(lastIndex + 1)];
67
}
0 commit comments