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:
p-sw 2024-06-11 17:53:34 +09:00
parent 6f8d944f47
commit 07d9306dde

View File

@ -5,7 +5,6 @@ export const CONFIG_DEFAULT_PATH = 'pswui.config.js'
interface RegistryComponent { interface RegistryComponent {
name: string name: string
libVersion: string
} }
export interface Registry { export interface Registry {
@ -24,7 +23,7 @@ export interface Config {
*/ */
paths?: { paths?: {
components?: 'src/pswui/components' | string 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 * Absolute path that will used for import in component
@ -40,7 +39,7 @@ export type ResolvedConfig<T = Config> = {
export const DEFAULT_CONFIG = { export const DEFAULT_CONFIG = {
paths: { paths: {
components: 'src/pswui/components', components: 'src/pswui/components',
lib: 'src/pswui/lib', lib: 'src/pswui/lib.tsx',
}, },
import: { import: {
lib: '@pswui-lib', lib: '@pswui-lib',