Modified the 'loadConfig' method to support '.cjs' and '.mjs' config files. Also, a 'changeExtension' function is added to helpers/path.ts to manipulate file extensions. An error will be thrown if a specified user config file is not found. The application defaults to the default config file if no user config file is provided.
19 lines
734 B
TypeScript
19 lines
734 B
TypeScript
import {ResolvedConfig} from '../const.js'
|
|
import {readdir} from 'node:fs/promises'
|
|
import {existsSync} from 'node:fs'
|
|
import {basename, dirname, extname, 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 []
|
|
}
|
|
}
|
|
|
|
export async function changeExtension(path: string, extension: string): Promise<string> {
|
|
return join(dirname(path), basename(path, extname(path)) + extension)
|
|
}
|