From 593559f8b42f77af38ffe62887aadabfd1a9a05c Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 7 Jun 2024 00:34:43 +0900 Subject: [PATCH] feat(cli): remove default path for config The commit removes the default path for config in the CLI 'list' command. This change improves flexibility by allowing the user to define their own path without overriding the default one. --- packages/cli/src/commands/list.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/commands/list.ts b/packages/cli/src/commands/list.ts index 4cc6a16..894f795 100644 --- a/packages/cli/src/commands/list.ts +++ b/packages/cli/src/commands/list.ts @@ -13,7 +13,7 @@ export default class List extends Command { static override flags = { url: Flags.boolean({char: 'u', description: 'include component file URL'}), - config: Flags.string({char: 'p', description: 'path to config', default: CONFIG_DEFAULT_PATH}), + config: Flags.string({char: 'p', description: 'path to config'}), } public async run(): Promise {