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:
p-sw 2024-06-11 13:03:15 +09:00
parent 647e5c311d
commit fb0c33a6cb

View File

@ -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>
}