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