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.
This commit is contained in:
p-sw 2024-06-11 13:00:33 +09:00
parent 946db4efd0
commit 274016035f

View File

@ -5,7 +5,7 @@ export const CONFIG_DEFAULT_PATH = 'pswui.config.js'
export interface Registry {
base: string
shared: string
lib: Record<string, string>
components: Record<string, string>
}