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.
This commit is contained in:
p-sw 2024-06-07 00:34:43 +09:00
parent c5bf5c69b3
commit 593559f8b4

View File

@ -13,7 +13,7 @@ export default class List extends Command {
static override flags = { static override flags = {
url: Flags.boolean({char: 'u', description: 'include component file URL'}), 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<void> { public async run(): Promise<void> {