From 17ea42fe488e91c2e7755e05e854778863de08b0 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sat, 15 Jun 2024 03:41:13 +0900 Subject: [PATCH] fix(cli): use getDirComponentURL --- packages/cli/src/commands/add.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/packages/cli/src/commands/add.tsx b/packages/cli/src/commands/add.tsx index 4e9ea89..13b503b 100644 --- a/packages/cli/src/commands/add.tsx +++ b/packages/cli/src/commands/add.tsx @@ -211,7 +211,7 @@ export default class Add extends Command { if (existsSync(componentFile) && !force) { componentFileOra.succeed(`Component is already installed! (${componentFile})`) } else { - const componentFileContentResponse = await safeFetch(await getComponentURL(registry, name)) + const componentFileContentResponse = await safeFetch(await getComponentURL(registry, componentObject)) if (!componentFileContentResponse.ok) { componentFileOra.fail(componentFileContentResponse.message) return @@ -232,12 +232,11 @@ export default class Add extends Command { if (requiredFiles.length === 0 && !force) { componentFileOra.succeed(`Component is already installed! (${componentDir})`) } else { - for await (const filename of requiredFiles) { + const requiredFilesURLs = await getDirComponentURL(registry, componentObject, requiredFiles) + for await (const [filename, url] of requiredFilesURLs) { const componentFile = join(componentDir, filename) if (!existsSync(componentFile) || force) { - const componentFileContentResponse = await safeFetch( - await getComponentURL(registry, componentObject.name, filename), - ) + const componentFileContentResponse = await safeFetch(url) if (!componentFileContentResponse.ok) { componentFileOra.fail(componentFileContentResponse.message) return