mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
adaff4109b
tools/tsec.bzl is now part of tsec. Remove from Angular repo and update BUILD.bazel files. PR Close #44205
30 lines
598 B
Python
30 lines
598 B
Python
load("//tools:defaults.bzl", "ng_module")
|
|
load("@npm//tsec:index.bzl", "tsec_test")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
exports_files(["package.json"])
|
|
|
|
ng_module(
|
|
name = "animations",
|
|
srcs = glob(
|
|
[
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
],
|
|
),
|
|
deps = [
|
|
"//packages/animations",
|
|
"//packages/animations/browser",
|
|
"//packages/common",
|
|
"//packages/core",
|
|
"//packages/platform-browser",
|
|
],
|
|
)
|
|
|
|
tsec_test(
|
|
name = "tsec_test",
|
|
target = "animations",
|
|
tsconfig = "//packages:tsec_config",
|
|
)
|