refactor(cli): update registry path and remove libVersion
Removed the 'libVersion' field from the RegistryComponent interface and updated the 'lib' path in the DEFAULT_CONFIG and 'paths' field in Registry. The 'lib' path now includes the file extension '.tsx', aiming to improve clarity and accuracy.
This commit is contained in:
parent
6f8d944f47
commit
07d9306dde
@ -5,7 +5,6 @@ export const CONFIG_DEFAULT_PATH = 'pswui.config.js'
|
||||
|
||||
interface RegistryComponent {
|
||||
name: string
|
||||
libVersion: string
|
||||
}
|
||||
|
||||
export interface Registry {
|
||||
@ -24,7 +23,7 @@ export interface Config {
|
||||
*/
|
||||
paths?: {
|
||||
components?: 'src/pswui/components' | string
|
||||
lib?: 'src/pswui/lib' | string
|
||||
lib?: 'src/pswui/lib.tsx' | string
|
||||
}
|
||||
/**
|
||||
* Absolute path that will used for import in component
|
||||
@ -40,7 +39,7 @@ export type ResolvedConfig<T = Config> = {
|
||||
export const DEFAULT_CONFIG = {
|
||||
paths: {
|
||||
components: 'src/pswui/components',
|
||||
lib: 'src/pswui/lib',
|
||||
lib: 'src/pswui/lib.tsx',
|
||||
},
|
||||
import: {
|
||||
lib: '@pswui-lib',
|
||||
|
Loading…
x
Reference in New Issue
Block a user