pswui/packages/cli/src/const.ts
p-sw 1cecc6fb72 refactor(cli): update shared file extension
The shared file extension has been updated from .ts to .tsx in the path constants and the default configuration within the CLI package. This change aligns with our efforts to standardize the file types across the project.
2024-06-07 00:49:25 +09:00

55 lines
1.3 KiB
TypeScript

import z from 'zod'
export const REGISTRY_URL = 'https://ui.psw.kr/registry.json'
export const CONFIG_DEFAULT_PATH = 'pswui.config.js'
export interface Registry {
base: string
shared: string
components: Record<string, string>
}
export interface Config {
/**
* Path that cli will create a file.
*/
paths?: {
components?: 'src/pswui/components' | string
shared?: 'src/pswui/shared.tsx' | string
}
/**
* Absolute path that will used for import in component
*/
import?: {
shared?: '@pswui-shared' | string
}
}
export type ResolvedConfig<T = Config> = {
[k in keyof T]-?: NonNullable<T[k]> extends object ? ResolvedConfig<NonNullable<T[k]>> : T[k]
}
export const DEFAULT_CONFIG = {
paths: {
components: 'src/pswui/components',
shared: 'src/pswui/shared.tsx',
},
import: {
shared: '@pswui-shared',
},
}
export const configZod = z.object({
paths: z
.object({
components: z.string().optional().default(DEFAULT_CONFIG.paths.components),
shared: z.string().optional().default(DEFAULT_CONFIG.paths.shared),
})
.optional()
.default(DEFAULT_CONFIG.paths),
import: z
.object({
shared: z.string().optional().default(DEFAULT_CONFIG.import.shared),
})
.optional()
.default(DEFAULT_CONFIG.import),
})