refactor(cli): make config lib path to directory pattern

This commit is contained in:
p-sw 2024-06-15 01:44:06 +09:00
parent 0072836bfc
commit c1d5c5d06b

View File

@ -36,7 +36,7 @@ export interface Config {
*/ */
paths?: { paths?: {
components?: 'src/pswui/components' | string components?: 'src/pswui/components' | string
lib?: 'src/pswui/lib.tsx' | string lib?: 'src/pswui/lib' | string
} }
} }
export type ResolvedConfig<T = Config> = { export type ResolvedConfig<T = Config> = {
@ -49,7 +49,7 @@ export const DEFAULT_CONFIG = {
}, },
paths: { paths: {
components: 'src/pswui/components', components: 'src/pswui/components',
lib: 'src/pswui/lib.tsx', lib: 'src/pswui/lib',
}, },
} }
export const configZod = z.object({ export const configZod = z.object({