fix(cli): use filter to return string only in getDirComponentRequiredFiles

This commit is contained in:
p-sw 2024-06-15 03:21:07 +09:00
parent 9f28779745
commit 6f637e51ba

View File

@ -15,7 +15,7 @@ export async function getDirComponentRequiredFiles<T extends RegistryComponent &
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> {