From fb0c33a6cbfe49edaea1135942a09ff2a5af53bb Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 13:03:15 +0900 Subject: [PATCH] refactor(cli): update Registry interface in const.ts The Registry interface has been refactored to include "paths" field, which is an object containing "components" and "lib" paths. Also, "lib" field is now a string array instead of a record. --- packages/cli/src/const.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/cli/src/const.ts b/packages/cli/src/const.ts index da0f65c..95575f4 100644 --- a/packages/cli/src/const.ts +++ b/packages/cli/src/const.ts @@ -5,7 +5,11 @@ export const CONFIG_DEFAULT_PATH = 'pswui.config.js' export interface Registry { base: string - lib: Record + paths: { + components: string + lib: string + } + lib: string[] components: Record }