refactor(cli): simplify getComponentsInstalled

This commit is contained in:
p-sw 2024-06-15 02:20:15 +09:00
parent 46bdb3df98
commit 4148b903e3

View File

@ -6,7 +6,10 @@ import {RegistryComponent, ResolvedConfig} from '../const.js'
export async function getComponentsInstalled(components: string[], config: ResolvedConfig) { export async function getComponentsInstalled(components: string[], config: ResolvedConfig) {
const componentPath = path.join(process.cwd(), config.paths.components) const componentPath = path.join(process.cwd(), config.paths.components)
if (existsSync(componentPath)) { if (!existsSync(componentPath)) {
return []
}
const dir = await readdir(componentPath) const dir = await readdir(componentPath)
const dirOnlyContainsComponent = [] const dirOnlyContainsComponent = []
for (const fileName of dir) { for (const fileName of dir) {
@ -16,9 +19,6 @@ export async function getComponentsInstalled(components: string[], config: Resol
} }
return dirOnlyContainsComponent return dirOnlyContainsComponent
}
return []
} }
export async function getDirComponentRequiredFiles<T extends RegistryComponent & {type: 'dir'}>( export async function getDirComponentRequiredFiles<T extends RegistryComponent & {type: 'dir'}>(