fix(cli): use filter to return string only in getDirComponentRequiredFiles
This commit is contained in:
parent
9f28779745
commit
6f637e51ba
@ -15,7 +15,7 @@ export async function getDirComponentRequiredFiles<T extends RegistryComponent &
|
|||||||
|
|
||||||
const dir = await readdir(componentPath)
|
const dir = await readdir(componentPath)
|
||||||
|
|
||||||
return componentObject.files.map((filename) => !dir.includes(filename))
|
return componentObject.files.filter((filename) => !dir.includes(filename))
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function checkComponentInstalled(component: RegistryComponent, config: ResolvedConfig): Promise<boolean> {
|
export async function checkComponentInstalled(component: RegistryComponent, config: ResolvedConfig): Promise<boolean> {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user