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.
This commit is contained in:
p-sw 2024-06-11 12:52:25 +09:00
parent 7d2aa1d7f0
commit b962b02690

View File

@ -15,13 +15,13 @@ export interface Config {
*/ */
paths?: { paths?: {
components?: 'src/pswui/components' | string 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 * Absolute path that will used for import in component
*/ */
import?: { import?: {
shared?: '@pswui-shared' | string lib?: '@pswui-lib' | string
} }
} }
export type ResolvedConfig<T = Config> = { export type ResolvedConfig<T = Config> = {
@ -31,23 +31,23 @@ export type ResolvedConfig<T = Config> = {
export const DEFAULT_CONFIG = { export const DEFAULT_CONFIG = {
paths: { paths: {
components: 'src/pswui/components', components: 'src/pswui/components',
shared: 'src/pswui/shared.tsx', lib: 'src/pswui/lib',
}, },
import: { import: {
shared: '@pswui-shared', lib: '@pswui-lib',
}, },
} }
export const configZod = z.object({ export const configZod = z.object({
paths: z paths: z
.object({ .object({
components: z.string().optional().default(DEFAULT_CONFIG.paths.components), 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() .optional()
.default(DEFAULT_CONFIG.paths), .default(DEFAULT_CONFIG.paths),
import: z import: z
.object({ .object({
shared: z.string().optional().default(DEFAULT_CONFIG.import.shared), lib: z.string().optional().default(DEFAULT_CONFIG.import.lib),
}) })
.optional() .optional()
.default(DEFAULT_CONFIG.import), .default(DEFAULT_CONFIG.import),