recursivePackagesRun function

Future<void> recursivePackagesRun(
  1. List<String> paths, {
  2. required FutureOr action(
    1. String package
    ),
  3. bool? verbose,
  4. int? poolSize,
})

Each path is tested

poolSize default to 4

Implementation

Future<void> recursivePackagesRun(List<String> paths,
        {required FutureOr<dynamic> Function(String package) action,
        bool? verbose,
        int? poolSize}) =>
    recursiveActions(paths,
        action: action, verbose: verbose, poolSize: poolSize);