Skip to content

Commit

Permalink
fix: ignore project-utils when building a dependency graph
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel910 committed Feb 17, 2024
1 parent f2a2672 commit 81b2ee2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/buildPackages/src/getBatches.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,9 @@ export async function getBatches(options: GetBatchesOptions = {}) {
"list",
"--toposort",
"--graph",
"--all"
"--all",
// We must ignore `project-utils`, because it's a dev dependency for all our packages.
"--ignore=@webiny/project-utils"
]).then(({ stdout }) => JSON.parse(stdout));

const packagesList: Record<string, string[]> = {};
Expand Down

0 comments on commit 81b2ee2

Please sign in to comment.