refactor(cli): update getComponentURL function in registry helper

Change the way the component URL is formed in the getComponentURL function in the registry helper. Now, it appends the path instead of replacing it directly in the registry base.
This commit is contained in:
p-sw 2024-06-11 13:05:57 +09:00
parent fb0c33a6cb
commit 7a82c284fc

View File

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