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:
parent
090fada7cd
commit
397210462f
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user