From 397210462f37a8bd9fa929628d6150550982a870 Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 13:25:36 +0900 Subject: [PATCH] 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. --- packages/cli/src/const.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/cli/src/const.ts b/packages/cli/src/const.ts index 95575f4..6aec90b 100644 --- a/packages/cli/src/const.ts +++ b/packages/cli/src/const.ts @@ -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 + components: Record } export interface Config {