refactor(cli): rename files to requiredFiles of component
This commit is contained in:
parent
d721aa290f
commit
1902b9606a
@ -229,11 +229,11 @@ 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)
|
||||||
const files = componentObject.files.filter((filename) => !installed.includes(filename))
|
const requiredFiles = componentObject.files.filter((filename) => !installed.includes(filename))
|
||||||
if (files.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 files) {
|
for await (const filename of requiredFiles) {
|
||||||
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(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user