import { z } from "zod"; export const registryURL = (branch: string) => `https://raw.githubusercontent.com/pswui/ui/${branch}/registry.json`; export const CONFIG_DEFAULT_PATH = "pswui.config.js"; export type RegistryComponent = | { files: string[]; name: string; type: "dir"; } | { name: string; type: "file"; }; export interface Registry { base: string; components: Record; lib: string[]; paths: { components: string; lib: string; }; } export interface Config { /** * Absolute path that will used for import in component */ import?: { lib?: "@pswui-lib" | string; }; /** * Path that cli will create a file. */ paths?: { components?: "src/pswui/components" | string; lib?: "src/pswui/lib" | string; }; } export type ResolvedConfig = { [k in keyof T]-?: NonNullable extends object ? ResolvedConfig> : T[k]; }; export const DEFAULT_CONFIG = { import: { lib: "@pswui-lib", }, paths: { components: "src/pswui/components", lib: "src/pswui/lib", }, }; export const configZod = z.object({ import: z .object({ lib: z.string().optional().default(DEFAULT_CONFIG.import.lib), }) .optional() .default(DEFAULT_CONFIG.import), paths: z .object({ components: z .string() .optional() .default(DEFAULT_CONFIG.paths.components), lib: z.string().optional().default(DEFAULT_CONFIG.paths.lib), }) .optional() .default(DEFAULT_CONFIG.paths), });