RemoveCommand constructor
RemoveCommand()
Implementation
RemoveCommand() {
addGlobalPubArgs(argParser);
argParser.addFlag(
'offline',
help: 'Use cached packages instead of accessing the network',
);
argParser.addFlag(
'dry-run',
abbr: 'n',
help: "Report what dependencies would change but don't change any",
);
argParser.addFlag(
'precompile',
help: 'Build executables in immediate dependencies',
);
}