feat(cli): make getDirComponentURL return each filenames
This commit is contained in:
parent
e9c7281c33
commit
ecaba351a3
@ -30,8 +30,8 @@ export async function getDirComponentURL(
|
|||||||
registry: Registry,
|
registry: Registry,
|
||||||
component: RegistryComponent & {type: 'dir'},
|
component: RegistryComponent & {type: 'dir'},
|
||||||
files?: string[],
|
files?: string[],
|
||||||
): Promise<string[]> {
|
): Promise<[string, string][]> {
|
||||||
const base = registry.base + registry.paths.components.replace('{componentName}', component.name)
|
const base = registry.base + registry.paths.components.replace('{componentName}', component.name)
|
||||||
|
|
||||||
return (files ?? component.files).map((filename) => base + '/' + filename)
|
return (files ?? component.files).map((filename) => [filename, base + '/' + filename])
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user