Fix workflow issue.

This commit is contained in:
ArthurSonzogni
2025-04-24 03:11:13 +02:00
parent 053a1d8290
commit c3d03dc716
5 changed files with 275 additions and 4 deletions

View File

@@ -21,9 +21,10 @@ package(default_visibility = ["//visibility:public"])
# A meta target that depends on all the ftxui sub modules.
alias(
name = "ftxui",
actual = ":component", # Note that :component depends on :dom, which depends
# on :screen. Bazel doesn't really support "public"
# and "private" dependencies. They are all public.
# Note that :component depends on :dom, which depends on :screen. Bazel
# doesn't really support "public" and "private" dependencies. They are all
# public. This is equivalent to depending on all the submodules.
actual = ":component",
visibility = ["//visibility:public"],
)