Hey there. Is there a way to tell which targets we...
# general
w
Hey there. Is there a way to tell which targets were invalidated during a
pants
run? I keep seeing messages like
Invalidated 2 targets
and I know it has to do with conflicting transitive dependencies but I’m not sure which ones. Knowing which targets were invalidated might help
e
Try
./pants server --open
. You'll get a web UI view of pants runs and the invalidated text is now a clickable link that expands to the target addresses.
w
Oh, thanks!