feat: Updates cli documentation for utils commands.

This commit is contained in:
2024-12-09 11:43:31 -05:00
parent 357914ba93
commit a8d35fed37
3 changed files with 24 additions and 17 deletions

View File

@@ -5,12 +5,13 @@ struct UtilsCommand: AsyncParsableCommand {
static let configuration = CommandConfiguration(
commandName: commandName,
abstract: "\("Utility commands.".blue)",
abstract: createAbstract("Utility commands."),
discussion: """
These are commands that are generally only run on occasion / less frequently used.
""",
subcommands: [
CreateProjectTemplateCommand.self, GenerateConfigurationCommand.self
GenerateProjectTemplateCommand.self,
GenerateConfigurationCommand.self
]
)