Reputation: 1
In an Nx monorepo, if I edit files in projectA
, it will affect projectB
and projectC
(via nx affected
1).
How do I get only the projects that have modified files?
In this example, I want something like nx affected --minimal
to return only projectA
, since no files have been changed in projectB
or projectC
.
Nx-native would be preferable, but shell scripts/pipes could also work.
nx affected
doesn't offer this functionality AFAICT (1 2 3).Upvotes: 0
Views: 18