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.
This commit is contained in:
parent
647e5c311d
commit
fb0c33a6cb
@ -5,7 +5,11 @@ export const CONFIG_DEFAULT_PATH = 'pswui.config.js'
|
||||
|
||||
export interface Registry {
|
||||
base: string
|
||||
lib: Record<string, string>
|
||||
paths: {
|
||||
components: string
|
||||
lib: string
|
||||
}
|
||||
lib: string[]
|
||||
components: Record<string, string>
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user