cacheSubcommands top-level property
Implementation
final List<FigSubcommand> cacheSubcommands = [
Subcommand(name: 'clean', description: 'Clear the cache', args: [
Arg(
name: 'PACKAGE',
description: 'The package to remove from the cache',
isVariadic: true)
]),
Subcommand(
name: 'prune',
description: 'Prune all unreachable objects from the cache'),
Subcommand(name: 'dir', description: 'Show the cache directory')
];