getRemovablePackages top-level property

FigGenerator getRemovablePackages
final

Implementation

final FigGenerator getRemovablePackages = FigGenerator(
  script: ['ls', '.yalc'],
  postProcess: (String out, [List<String>? tokens]) {
    return out.split('\n').map((path) => FigSuggestion(
          name: path,
          icon: '📦',
          description: path,
        )).toList();
  },
);