lol, dependency check was reversed

This commit is contained in:
Arpad Borsos
2022-07-09 17:37:48 +02:00
parent 7c190ef171
commit 07a2ee71bc
5 changed files with 32 additions and 53 deletions

View File

@@ -14,7 +14,7 @@ export class Workspace {
}),
);
for (const pkg of meta.packages) {
if (!pkg.manifest_path.startsWith(this.root)) {
if (pkg.manifest_path.startsWith(this.root)) {
continue;
}
const targets = pkg.targets.filter((t) => t.kind[0] === "lib").map((t) => t.name);