From d2ed474c9dc11b98ad810738285ae5e8bc8a5f48 Mon Sep 17 00:00:00 2001 From: p-sw Date: Thu, 6 Jun 2024 23:17:22 +0900 Subject: [PATCH] style(cli): update list command description The format of the list command description has been updated for consistency. A period has been added at the end of the description. --- 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 520b078..3d100c3 100644 --- a/packages/cli/src/commands/list.ts +++ b/packages/cli/src/commands/list.ts @@ -7,7 +7,7 @@ import {loadConfig, validateConfig} from '../helpers/config.js' import {getComponentsInstalled} from '../helpers/path.js' export default class List extends Command { - static override description = 'Prints all available components in registry and components installed in this project' + static override description = 'Prints all available components in registry and components installed in this project.' static override examples = ['<%= config.bin %> <%= command.id %>']