feat(cli): add getDirComponentRequiredFiles
This commit is contained in:
parent
0be21e2a8d
commit
46bdb3df98
@ -2,7 +2,7 @@ import {existsSync} from 'node:fs'
|
|||||||
import {readdir} from 'node:fs/promises'
|
import {readdir} from 'node:fs/promises'
|
||||||
import path from 'node:path'
|
import path from 'node:path'
|
||||||
|
|
||||||
import {ResolvedConfig} from '../const.js'
|
import {RegistryComponent, ResolvedConfig} from '../const.js'
|
||||||
|
|
||||||
export async function getComponentsInstalled(components: string[], config: ResolvedConfig) {
|
export async function getComponentsInstalled(components: string[], config: ResolvedConfig) {
|
||||||
const componentPath = path.join(process.cwd(), config.paths.components)
|
const componentPath = path.join(process.cwd(), config.paths.components)
|
||||||
@ -21,6 +21,26 @@ export async function getComponentsInstalled(components: string[], config: Resol
|
|||||||
return []
|
return []
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function getDirComponentRequiredFiles<T extends RegistryComponent & {type: 'dir'}>(
|
||||||
|
componentObject: T,
|
||||||
|
config: ResolvedConfig,
|
||||||
|
) {
|
||||||
|
const componentPath = path.join(process.cwd(), config.paths.components, componentObject.name)
|
||||||
|
if (!existsSync(componentPath)) {
|
||||||
|
return []
|
||||||
|
}
|
||||||
|
|
||||||
|
const dir = await readdir(componentPath)
|
||||||
|
const dirOnlyContainsComponentFile = []
|
||||||
|
for (const fileName of dir) {
|
||||||
|
if (componentObject.files.includes(fileName)) {
|
||||||
|
dirOnlyContainsComponentFile.push(fileName)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return dirOnlyContainsComponentFile
|
||||||
|
}
|
||||||
|
|
||||||
export async function changeExtension(_path: string, extension: string): Promise<string> {
|
export async function changeExtension(_path: string, extension: string): Promise<string> {
|
||||||
return path.join(path.dirname(_path), path.basename(_path, path.extname(_path)) + extension)
|
return path.join(path.dirname(_path), path.basename(_path, path.extname(_path)) + extension)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user