fix(cli): use getDirComponentURL
This commit is contained in:
parent
ab95442de1
commit
17ea42fe48
@ -211,7 +211,7 @@ export default class Add extends Command {
|
|||||||
if (existsSync(componentFile) && !force) {
|
if (existsSync(componentFile) && !force) {
|
||||||
componentFileOra.succeed(`Component is already installed! (${componentFile})`)
|
componentFileOra.succeed(`Component is already installed! (${componentFile})`)
|
||||||
} else {
|
} else {
|
||||||
const componentFileContentResponse = await safeFetch(await getComponentURL(registry, name))
|
const componentFileContentResponse = await safeFetch(await getComponentURL(registry, componentObject))
|
||||||
if (!componentFileContentResponse.ok) {
|
if (!componentFileContentResponse.ok) {
|
||||||
componentFileOra.fail(componentFileContentResponse.message)
|
componentFileOra.fail(componentFileContentResponse.message)
|
||||||
return
|
return
|
||||||
@ -232,12 +232,11 @@ export default class Add extends Command {
|
|||||||
if (requiredFiles.length === 0 && !force) {
|
if (requiredFiles.length === 0 && !force) {
|
||||||
componentFileOra.succeed(`Component is already installed! (${componentDir})`)
|
componentFileOra.succeed(`Component is already installed! (${componentDir})`)
|
||||||
} else {
|
} 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)
|
const componentFile = join(componentDir, filename)
|
||||||
if (!existsSync(componentFile) || force) {
|
if (!existsSync(componentFile) || force) {
|
||||||
const componentFileContentResponse = await safeFetch(
|
const componentFileContentResponse = await safeFetch(url)
|
||||||
await getComponentURL(registry, componentObject.name, filename),
|
|
||||||
)
|
|
||||||
if (!componentFileContentResponse.ok) {
|
if (!componentFileContentResponse.ok) {
|
||||||
componentFileOra.fail(componentFileContentResponse.message)
|
componentFileOra.fail(componentFileContentResponse.message)
|
||||||
return
|
return
|
||||||
|
Loading…
x
Reference in New Issue
Block a user