mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-11-22 14:25:10 +03:00
13 lines
319 B
Python
13 lines
319 B
Python
# Done to avoid triggering a lint rule that replaces glob with an fbcode macro
|
|
load(":defs.bzl", "export_prelude")
|
|
|
|
globby = glob
|
|
|
|
srcs = globby(
|
|
["**"],
|
|
# Context: https://fb.workplace.com/groups/buck2users/posts/3121903854732641/
|
|
exclude = ["**/.pyre_configuration.local"],
|
|
)
|
|
|
|
export_prelude(srcs = srcs)
|