LicenseCliCommand constructor

LicenseCliCommand()

Implementation

LicenseCliCommand() {
  argParser.addOption(
    'type',
    abbr: 't',
    defaultsTo: 'mit',
    help: 'License type to generate (mit, apache, gpl).',
  );
  argParser.addOption(
    'author',
    abbr: 'a',
    help:
        'Author name to include in copyright line. If omitted and running interactively, you will be prompted.',
  );
}