angular/packages/localize/init/BUILD.bazel
Joey Perrott 303bb4d27c build: reformat BUILD files (#48181)
Reformat BUILD file usage of globs.

PR Close #48181
2022-11-22 21:22:34 +00:00

26 lines
461 B
Text

load("//tools:defaults.bzl", "ts_library")
package(default_visibility = ["//visibility:public"])
exports_files(["package.json"])
ts_library(
name = "init",
srcs = glob(
[
"**/*.ts",
],
),
module_name = "@angular/localize/init",
deps = [
"//packages/localize",
"@npm//@types/node",
],
)
filegroup(
name = "files_for_docgen",
srcs = glob([
"*.ts",
]) + ["PACKAGE.md"],
)