Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mmews committed Aug 9, 2024
1 parent 147c1a7 commit 6197e31
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ private void findDependencies(Set<Path> allProjectDirs, Path prjDir, Path wsRoot
if (prjDescr == null) {
return;
}
if (!prjDescr.hasN4JSNature() && prjDescr.getTypes() == null) {
if (!prjDescr.hasN4JSNature() && !prjDescr.isWorkspaceRoot() && prjDescr.getTypes() == null) {
return;
}

Expand Down

0 comments on commit 6197e31

Please sign in to comment.