Skip to content

Commit

Permalink
Do not build dependants of affected packages in a partition.
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagobento committed May 3, 2024
1 parent fe9f570 commit f9e5481
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ async function getPartitions(): Promise<Array<None | Full | Partial>> {
name: partition.name,
bootstrapPnpmFilterString: [...relevantPackageNamesInPartition].map((p) => `-F '${p}'`).join(" "),
upstreamPnpmFilterString: [...upstreamPackageNamesInPartition].map((p) => `-F '${p}'`).join(" "),
affectedPnpmFilterString: [...affectedPackageNamesInPartition].map((p) => `-F '...${p}'`).join(" "),
affectedPnpmFilterString: [...affectedPackageNamesInPartition].map((p) => `-F '${p}'`).join(" "),
};
})
);
Expand Down

0 comments on commit f9e5481

Please sign in to comment.