You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// if includeAllDependencies is true, we want to include all dependencies of filtered projects, otherwise we only want to include the filtered projects
604
+
constprojects=includeAllDependencies
605
+
? filteredProjects
606
+
.map((p)=>p.name)
607
+
.flatMap(retrieveDeps)
608
+
.map((dep)=>projectGraph.nodes[dep])
609
+
.filter(Boolean)
597
610
: filteredProjects;
598
611
599
612
for(constprojectNodeofprojects){
600
613
// Ensure that the packageRoot is resolved for the project and added to the map for later use
0 commit comments