Skip to content

Commit 96477cc

Browse files
fix!: fix the site being down due to svelte-check
Fixes #110
1 parent d556aef commit 96477cc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/lib/repositories.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ const repos: Record<Category, { name: string; repos: RepoInfo[] }> = {
6161
{
6262
repoName: "language-tools",
6363
metadataFromTag: tag => {
64+
if (/@\d/.test(tag)) return splitByLastAt(tag);
6465
const lastIndex = tag.lastIndexOf("-");
6566
return [tag.substring(0, lastIndex), tag.substring(lastIndex + 1)];
6667
}

0 commit comments

Comments
 (0)