feat(cli): add shared field to Registry interface

A new field "shared" has been added to the Registry interface within the const.ts file located in the cli package. This extends the existing interface to hold more diverse data.
This commit is contained in:
p-sw 2024-06-06 23:55:43 +09:00
parent b6d32e980a
commit 36c5def5a6

View File

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