lockInstallerOptions top-level property
Implementation
final List<Option> lockInstallerOptions = [
Option(
name: '--link-mode',
description:
'The method to use when installing packages from the global cache',
args: [
Arg(name: 'LINK_MODE', suggestions: [
FigSuggestion(name: 'clone'),
FigSuggestion(name: 'copy'),
FigSuggestion(name: 'hardlink'),
FigSuggestion(name: 'symlink')
])
])
];