Make entries in new mapping mandatory

This commit is contained in:
Michael B. Gale
2026-03-02 18:08:53 +00:00
parent 8a1cd7656d
commit 66e08d2b3f
2 changed files with 5 additions and 1 deletions
+3 -1
View File
@@ -236,14 +236,16 @@ const LANGUAGE_TO_REGISTRY_TYPE: RegistryMapping = {
go: ["goproxy_server", "git_source"],
} as const;
const NEW_LANGUAGE_TO_REGISTRY_TYPE: RegistryMapping = {
const NEW_LANGUAGE_TO_REGISTRY_TYPE: Required<RegistryMapping> = {
actions: [],
cpp: [],
java: ["maven_repository"],
csharp: ["nuget_feed"],
javascript: [],
python: [],
ruby: [],
rust: [],
swift: [],
go: ["goproxy_server", "git_source"],
} as const;