commands top-level property

List<Command> commands
final

Implementation

final List<Command> commands = [
  CommandParent(
    'create',
    [
      CreatePageCommand(),
      CreateProjectCommand(),
    ],
    ['-c'],
  ),
  HelpCommand(),
  VersionCommand(),
  InstallCommand(),
  RemoveCommand(),
  UpdateCommand(),
  CommandParent(
    'runner',
    [
      RunnerCommand(),
      RunnerComponent(),
    ],
    ['-r'],
  ),
];