mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
21 lines
642 B
Text
21 lines
642 B
Text
load("//aio/content/examples:examples.bzl", "EXAMPLES")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
filegroup(
|
|
name = "examples",
|
|
srcs = glob(
|
|
["**"],
|
|
exclude = ["BUILD.bazel"],
|
|
) + ["//aio/content/examples/%s:files" % example for example in EXAMPLES.keys()],
|
|
)
|
|
|
|
filegroup(
|
|
name = "all-stackblitz",
|
|
srcs = ["//aio/content/examples/%s:stackblitz" % example for example in EXAMPLES.keys() if EXAMPLES[example]["stackblitz"]],
|
|
)
|
|
|
|
filegroup(
|
|
name = "all-example-zips",
|
|
srcs = ["//aio/content/examples/%s:example-zip" % example for example in EXAMPLES.keys() if EXAMPLES[example]["zip"]],
|
|
)
|