argParser property

  1. @override
ArgParser argParser
final

Argument parser for the command.

Implementation

@override
final ArgParser argParser = creatorArgParser
  ..addMultiOption(
    "tools",
    abbr: 'T',
    help: "The tools to use for the publisher.",
    allowed: [
      "firebase",
      "fastlane",
      if (Platform.isMacOS) "xcrun",
      "github",
    ],
    allowedHelp: {
      "firebase": "Publish to Firebase App Distribution.",
      "fastlane": "Publish using Fastlane.",
      if (Platform.isMacOS)
        "xcrun": "Publish using Xcode command line tools.",
      "github": "Publish to GitHub.",
    },
  );