Skip to content

Commit

Permalink
[INTERNAL] builder: Adapt to ProjectGraph#getAllProjects flat array c…
Browse files Browse the repository at this point in the history
…hange
  • Loading branch information
RandomByte committed Jun 7, 2022
1 parent 6433eaa commit 0ac1569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ module.exports = async function({
}

// Count total number of projects to build
const requestedProjects = graph.getAllProjects().map((arr) => arr[0]).filter(function(projectName) {
const requestedProjects = graph.getAllProjects().map((p) => p.getName()).filter(function(projectName) {
return projectFilter(projectName);
});

Expand Down

0 comments on commit 0ac1569

Please sign in to comment.