From 4148b903e3b1bf46a298740c944736d12c24dd22 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sat, 15 Jun 2024 02:20:15 +0900 Subject: [PATCH] refactor(cli): simplify getComponentsInstalled --- packages/cli/src/helpers/path.ts | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/packages/cli/src/helpers/path.ts b/packages/cli/src/helpers/path.ts index a59fa0a..62aaa7b 100644 --- a/packages/cli/src/helpers/path.ts +++ b/packages/cli/src/helpers/path.ts @@ -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(