Hi pants people! Is there flag to force all the tr...
# general
c
Hi pants people! Is there flag to force all the transitive dependencies to build/bundle? I have a build target
A
in a separate BUILD file from another target
B
.
A
depends on
B
.
A
is built via the
--changed-parent
flag, but `B`’s
/dist
artifacts aren’t available when
A
is triggered, because 1) We don’t cache
/dist
and 2) `B`’s distributable artifact is never built because the BUILD file is never invalidated.