From f99010e863c7530127738c606a9a98aba9502989 Mon Sep 17 00:00:00 2001 From: Rexios Date: Fri, 17 Jan 2025 13:53:04 -0500 Subject: [PATCH] Fix test for link command --- bin/link.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/link.dart b/bin/link.dart index 1b1ef40..a835099 100644 --- a/bin/link.dart +++ b/bin/link.dart @@ -22,7 +22,8 @@ Future linkDependencies({ for (final project in projects) { // Skip workspace members (the workspace will resolve them) - if (project.type == ProjectType.workspaceMember) { + if (project.type == ProjectType.workspaceMember && + project.workspaceInScope) { print(yellow.wrap('Skipping workspace member: ${project.path}')); continue; }