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:
parent
acca348e1e
commit
be28704cb1
@ -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
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user