Hi! you can use `sources = rglobs("foo/")` (refere...
# general
r
Hi! you can use
sources = rglobs("foo/")
(reference: the last paragraph of this section: https://www.pantsbuild.org/build_files.html#sources). However, we highly highly encourage to have one BUILD file (and one target) per subdirectory (so one in
foo
, one in
foo/feature/
, one in
foo/data
, and include them in the targets defined in
foo/
via the
dependencies
field.
👍 2
a
thanks, that works