feat(cli): add support for different config file formats
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.
This commit is contained in:
parent
263bbcbaa4
commit
c5bf5c69b3
@ -2,15 +2,32 @@ import {CONFIG_DEFAULT_PATH, DEFAULT_CONFIG, ResolvedConfig} from '../const.js'
|
||||
import {configZod} from '../const.js'
|
||||
import {join} from 'node:path'
|
||||
import {existsSync} from 'node:fs'
|
||||
import {changeExtension} from './path.js'
|
||||
|
||||
export async function loadConfig(config?: string): Promise<unknown> {
|
||||
const configPath = join(process.cwd(), config ?? CONFIG_DEFAULT_PATH)
|
||||
const userConfigPath = config ? join(process.cwd(), config) : null
|
||||
const defaultConfigPath = join(process.cwd(), CONFIG_DEFAULT_PATH)
|
||||
const cjsConfigPath = join(process.cwd(), await changeExtension(CONFIG_DEFAULT_PATH, '.cjs'))
|
||||
const mjsConfigPath = join(process.cwd(), await changeExtension(CONFIG_DEFAULT_PATH, '.mjs'))
|
||||
|
||||
if (existsSync(configPath)) {
|
||||
return (await import(configPath)).default
|
||||
} else {
|
||||
return DEFAULT_CONFIG
|
||||
if (userConfigPath) {
|
||||
if (existsSync(userConfigPath)) {
|
||||
return (await import(userConfigPath)).default
|
||||
} else {
|
||||
throw new Error(`Error: config ${userConfigPath} not found.`)
|
||||
}
|
||||
}
|
||||
|
||||
if (existsSync(defaultConfigPath)) {
|
||||
return (await import(defaultConfigPath)).default
|
||||
}
|
||||
if (existsSync(cjsConfigPath)) {
|
||||
return (await import(cjsConfigPath)).default
|
||||
}
|
||||
if (existsSync(mjsConfigPath)) {
|
||||
return (await import(mjsConfigPath)).default
|
||||
}
|
||||
return DEFAULT_CONFIG
|
||||
}
|
||||
|
||||
export async function validateConfig(log: (message: string) => void, config?: unknown): Promise<ResolvedConfig> {
|
||||
|
@ -1,7 +1,7 @@
|
||||
import {ResolvedConfig} from '../const.js'
|
||||
import {readdir} from 'node:fs/promises'
|
||||
import {existsSync} from 'node:fs'
|
||||
import {join} from 'node:path'
|
||||
import {basename, dirname, extname, join} from 'node:path'
|
||||
|
||||
export async function getComponentsInstalled(components: string[], config: ResolvedConfig) {
|
||||
const componentPath = join(process.cwd(), config.paths.components)
|
||||
@ -12,3 +12,7 @@ export async function getComponentsInstalled(components: string[], config: Resol
|
||||
return []
|
||||
}
|
||||
}
|
||||
|
||||
export async function changeExtension(path: string, extension: string): Promise<string> {
|
||||
return join(dirname(path), basename(path, extname(path)) + extension)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user