DartReleaseCommandRunner constructor

DartReleaseCommandRunner()

Implementation

DartReleaseCommandRunner()
    : super('dart_release',
          'A command line tool to build, release and deploy Dart applications.') {
  argParser.addFlag(
    verboseFlagArg,
    negatable: false,
    help: 'Noisy logging, including all shell commands executed.',
  );
  addCommand(BuildCommand());
  addCommand(DeployCommand());
}