commonOptions top-level property
Implementation
final List<FigOption> commonOptions = [
FigOption(
name: ['--config-path', '-c'],
description: 'Specify the path to the configuration file',
args: [
FigArg(
name: 'path',
template: 'filepaths',
),
],
isPersistent: true,
),
FigOption(
name: ['--sake-app-path', '-s'],
description: 'Specify the path for the SakeApp package',
args: [
FigArg(
name: 'path',
template: 'folders',
),
],
isPersistent: true,
),
];