refactor(cli): update references to component name

Update the functions `getComponentURL` and `getComponentRealname` in the CLI helper `registry.ts` to access the component name through the 'name' property of each component object in the registry, instead of directly accessing the component name.
This commit is contained in:
p-sw 2024-06-11 13:25:23 +09:00
parent 303d6b31e7
commit 090fada7cd

View File

@ -21,12 +21,12 @@ export async function getAvailableComponentNames(registry: Registry): Promise<st
}
export async function getComponentURL(registry: Registry, componentName: string): Promise<string> {
return registry.base + registry.paths.components.replace('{componentName}', registry.components[componentName])
return registry.base + registry.paths.components.replace('{componentName}', registry.components[componentName].name)
}
export async function getComponentRealname(
registry: Registry,
componentName: keyof Registry['components'],
): Promise<string> {
return registry.components[componentName]
return registry.components[componentName].name
}