This commit introduces configuration and path management functionality in the CLI by adding the helper functions to load and validate configuration. It also provides the logic to retrieve available components from a given registry. Additionally, it exposes these functionalities in public API.
15 lines
541 B
TypeScript
15 lines
541 B
TypeScript
import {ResolvedConfig} from '../const.js'
|
|
import {readdir} from 'node:fs/promises'
|
|
import {existsSync} from 'node:fs'
|
|
import {join} from 'node:path'
|
|
|
|
export async function getComponentsInstalled(components: string[], config: ResolvedConfig) {
|
|
const componentPath = join(process.cwd(), config.paths.components)
|
|
if (existsSync(componentPath)) {
|
|
const dir = await readdir(componentPath)
|
|
return dir.reduce((prev, current) => (components.includes(current) ? [...prev, current] : prev), [] as string[])
|
|
} else {
|
|
return []
|
|
}
|
|
}
|