feat(cli): update components in Registry interface

The Registry interface in the 'const.ts' file within the cli package has been updated. The 'components' property is now a record of RegistryComponent objects, which includes 'name' and 'libVersion' properties, previously it was a record of strings.
This commit is contained in:
p-sw 2024-06-11 13:25:36 +09:00
parent 090fada7cd
commit 397210462f

View File

@ -3,6 +3,11 @@ import z from 'zod'
export const REGISTRY_URL = 'https://ui.psw.kr/registry.json'
export const CONFIG_DEFAULT_PATH = 'pswui.config.js'
interface RegistryComponent {
name: string
libVersion: string
}
export interface Registry {
base: string
paths: {
@ -10,7 +15,7 @@ export interface Registry {
lib: string
}
lib: string[]
components: Record<string, string>
components: Record<string, RegistryComponent>
}
export interface Config {