From 0072836bfc1dd31ac32af2080647522ce6635232 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sat, 15 Jun 2024 01:43:34 +0900 Subject: [PATCH] feat(registry): apply new structure of registry --- packages/cli/src/const.ts | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/packages/cli/src/const.ts b/packages/cli/src/const.ts index 2779598..858ef86 100644 --- a/packages/cli/src/const.ts +++ b/packages/cli/src/const.ts @@ -3,9 +3,16 @@ import {z} from 'zod' export const REGISTRY_URL = 'https://raw.githubusercontent.com/pswui/ui/main/registry.json' export const CONFIG_DEFAULT_PATH = 'pswui.config.js' -interface RegistryComponent { - name: string -} +type RegistryComponent = + | { + type: 'file' + name: string + } + | { + type: 'dir' + name: string + files: string[] + } export interface Registry { base: string @@ -14,6 +21,7 @@ export interface Registry { components: string lib: string } + lib: string[] } export interface Config {