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:
parent
fb0c33a6cb
commit
7a82c284fc
@ -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(
|
||||
|
Loading…
x
Reference in New Issue
Block a user