feat(cli): add ability to make dir component URL in getComponentURL
This commit is contained in:
parent
36da69240c
commit
2d68a5051f
@ -23,8 +23,17 @@ export async function getAvailableComponentNames(registry: Registry): Promise<st
|
|||||||
return Object.keys(registry.components)
|
return Object.keys(registry.components)
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function getComponentURL(registry: Registry, componentName: string): Promise<string> {
|
export async function getComponentURL(
|
||||||
return registry.base + registry.paths.components.replace('{componentName}', registry.components[componentName].name)
|
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(
|
export async function getComponentRealname(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user