fix(cli): check installed check with required files
This commit is contained in:
parent
272fc89a92
commit
d721aa290f
@ -188,7 +188,7 @@ export default class Add extends Command {
|
|||||||
for await (const libFile of registry.lib) {
|
for await (const libFile of registry.lib) {
|
||||||
const filePath = join(libFolder, libFile)
|
const filePath = join(libFolder, libFile)
|
||||||
if (!existsSync(filePath)) {
|
if (!existsSync(filePath)) {
|
||||||
const libFileContentResponse = await safeFetch(registry.base + registry.paths.lib.replace('libName', libFile))
|
const libFileContentResponse = await safeFetch(registry.base + registry.paths.lib.replace('{libName}', libFile))
|
||||||
if (!libFileContentResponse.ok) {
|
if (!libFileContentResponse.ok) {
|
||||||
libFileOra.fail(libFileContentResponse.message)
|
libFileOra.fail(libFileContentResponse.message)
|
||||||
return
|
return
|
||||||
@ -229,10 +229,10 @@ export default class Add extends Command {
|
|||||||
await mkdir(componentDir, {recursive: true})
|
await mkdir(componentDir, {recursive: true})
|
||||||
}
|
}
|
||||||
const installed = await getDirComponentInstalledFiles(componentObject, resolvedConfig)
|
const installed = await getDirComponentInstalledFiles(componentObject, resolvedConfig)
|
||||||
if (installed.length === 0 && !force) {
|
const files = componentObject.files.filter((filename) => !installed.includes(filename))
|
||||||
|
if (files.length === 0 && !force) {
|
||||||
componentFileOra.succeed(`Component is already installed! (${componentDir})`)
|
componentFileOra.succeed(`Component is already installed! (${componentDir})`)
|
||||||
} else {
|
} else {
|
||||||
const files = componentObject.files.filter((filename) => !installed.includes(filename))
|
|
||||||
for await (const filename of files) {
|
for await (const filename of files) {
|
||||||
const componentFile = join(componentDir, filename)
|
const componentFile = join(componentDir, filename)
|
||||||
if (!existsSync(componentFile) || force) {
|
if (!existsSync(componentFile) || force) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user