Skip to content

Commit

Permalink
fix(deps): use eagerError true which is what I expected initally
Browse files Browse the repository at this point in the history
  • Loading branch information
brad-jones committed Jun 3, 2020
1 parent 6cb1482 commit ededa55
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/src/dsl/depends.dart
Expand Up @@ -17,5 +17,6 @@ mixin Depends {
/// ```
///
/// _NOTE: This is simply an alias for [Future.wait]_
Future<List<T>> deps<T>(Iterable<Future<T>> tasks) => Future.wait(tasks);
Future<List<T>> deps<T>(Iterable<Future<T>> tasks) =>
Future.wait(tasks, eagerError: true);
}

0 comments on commit ededa55

Please sign in to comment.