pswui/packages/cli/src/const.ts
p-sw c59c80007a feat(cli): add configuration and path management functionality
This commit introduces configuration and path management functionality in the CLI by adding the helper functions to load and validate configuration. It also provides the logic to retrieve available components from a given registry. Additionally, it exposes these functionalities in public API.
2024-06-06 22:07:19 +09:00

54 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
components: Record<string, string>
}
export interface Config {
/**
* Path that cli will create a file.
*/
paths?: {
components?: 'src/pswui/components' | string
shared?: 'src/pswui/shared.ts' | 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.ts',
},
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),
})