From b962b026903b66382e5104cb0023859c4a1f6da9 Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 12:52:25 +0900 Subject: [PATCH] refactor(cli): rename shared path and import properties to lib The commit includes an update in the cli package where we've changed the properties in paths and import objects from 'shared' to 'lib'. This refactoring also applies to the DEFAULT_CONFIG object and the configZod object, ensuring consistency across all configurations. --- packages/cli/src/const.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/cli/src/const.ts b/packages/cli/src/const.ts index 726d3d9..81be5f8 100644 --- a/packages/cli/src/const.ts +++ b/packages/cli/src/const.ts @@ -15,13 +15,13 @@ export interface Config { */ paths?: { components?: 'src/pswui/components' | string - shared?: 'src/pswui/shared.tsx' | string + lib?: 'src/pswui/lib' | string } /** * Absolute path that will used for import in component */ import?: { - shared?: '@pswui-shared' | string + lib?: '@pswui-lib' | string } } export type ResolvedConfig = { @@ -31,23 +31,23 @@ export type ResolvedConfig = { export const DEFAULT_CONFIG = { paths: { components: 'src/pswui/components', - shared: 'src/pswui/shared.tsx', + lib: 'src/pswui/lib', }, import: { - shared: '@pswui-shared', + lib: '@pswui-lib', }, } export const configZod = z.object({ paths: z .object({ components: z.string().optional().default(DEFAULT_CONFIG.paths.components), - shared: z.string().optional().default(DEFAULT_CONFIG.paths.shared), + lib: z.string().optional().default(DEFAULT_CONFIG.paths.lib), }) .optional() .default(DEFAULT_CONFIG.paths), import: z .object({ - shared: z.string().optional().default(DEFAULT_CONFIG.import.shared), + lib: z.string().optional().default(DEFAULT_CONFIG.import.lib), }) .optional() .default(DEFAULT_CONFIG.import),