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