Skip to content

Commit

Permalink
refactor(listable): Pass explicit arguments to batch-packages
Browse files Browse the repository at this point in the history
  • Loading branch information
evocateur committed Jan 11, 2019
1 parent c79a827 commit 80092e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion utils/listable/lib/listable-format.js
Expand Up @@ -38,7 +38,8 @@ function parseViewOptions(options) {
}

function flatBatched(pkgList) {
const batches = batchPackages(pkgList);
// allow cycles, output needs to be usable for debugging circularity
const batches = batchPackages(pkgList, false, "allDependencies");

return batches.reduce((acc, batch) => acc.concat(batch), []);
}
Expand Down

0 comments on commit 80092e5

Please sign in to comment.