From 274016035f1c9b66cd0ff91ec7d144af882a5726 Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 13:00:33 +0900 Subject: [PATCH] refactor(cli): replace shared with lib in Registry Changed the 'shared' property in the Registry interface to 'lib'. This update in 'packages/cli/src/const.ts' provides a more generic way to manage libraries with a key-value pair notation. --- packages/cli/src/const.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/const.ts b/packages/cli/src/const.ts index 81be5f8..da0f65c 100644 --- a/packages/cli/src/const.ts +++ b/packages/cli/src/const.ts @@ -5,7 +5,7 @@ export const CONFIG_DEFAULT_PATH = 'pswui.config.js' export interface Registry { base: string - shared: string + lib: Record components: Record }