Remove unused registry types from LANGUAGE_TO_REGISTRY_TYPE

This commit is contained in:
Michael B. Gale
2026-02-28 23:24:41 +00:00
parent 0ec47d036c
commit 68d73442fa
2 changed files with 10 additions and 8 deletions
+5 -4
View File
@@ -225,12 +225,13 @@ function isPAT(value: string) {
}
const LANGUAGE_TO_REGISTRY_TYPE: Partial<Record<KnownLanguage, string[]>> = {
actions: [],
java: ["maven_repository"],
csharp: ["nuget_feed"],
javascript: ["npm_registry"],
python: ["python_index"],
ruby: ["rubygems_server"],
rust: ["cargo_registry"],
javascript: [],
python: [],
ruby: [],
rust: [],
go: ["goproxy_server", "git_source"],
} as const;