feat(cli): add logging to config validation

The validateConfig function in the cli module has been updated to include logging. The logs show the locations where the component and shared module will be installed, as well as the import path for the shared module.
This commit is contained in:
p-sw 2024-06-07 00:11:12 +09:00
parent acca348e1e
commit be28704cb1

View File

@ -13,6 +13,10 @@ export async function loadConfig(config?: string): Promise<unknown> {
} }
} }
export async function validateConfig(config?: unknown): Promise<ResolvedConfig> { export async function validateConfig(log: (message: string) => void, config?: unknown): Promise<ResolvedConfig> {
return await configZod.parseAsync(config) const parsedConfig: ResolvedConfig = await configZod.parseAsync(config)
log(`Install component to: ${join(process.cwd(), parsedConfig.paths.components)}`)
log(`Install shared module to: ${join(process.cwd(), parsedConfig.paths.shared)}`)
log(`Import shared with: ${parsedConfig.import.shared}`)
return parsedConfig
} }