feat(cli): add ability to make dir component URL in getComponentURL

This commit is contained in:
p-sw 2024-06-15 02:30:29 +09:00
parent 36da69240c
commit 2d68a5051f

View File

@ -23,8 +23,17 @@ export async function getAvailableComponentNames(registry: Registry): Promise<st
return Object.keys(registry.components)
}
export async function getComponentURL(registry: Registry, componentName: string): Promise<string> {
return registry.base + registry.paths.components.replace('{componentName}', registry.components[componentName].name)
export async function getComponentURL(
registry: Registry,
componentName: string,
dirComponentFile?: string,
): Promise<string> {
let base =
registry.base + registry.paths.components.replace('{componentName}', registry.components[componentName].name)
if (dirComponentFile) {
base += '/' + dirComponentFile
}
return base
}
export async function getComponentRealname(