From 07d9306dde30b6453324e9be0513d3d2e0038b65 Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 17:53:34 +0900 Subject: [PATCH] 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. --- packages/cli/src/const.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/cli/src/const.ts b/packages/cli/src/const.ts index 6aec90b..4817c5e 100644 --- a/packages/cli/src/const.ts +++ b/packages/cli/src/const.ts @@ -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 = { export const DEFAULT_CONFIG = { paths: { components: 'src/pswui/components', - lib: 'src/pswui/lib', + lib: 'src/pswui/lib.tsx', }, import: { lib: '@pswui-lib',