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
26 lines
455 B
Python
26 lines
455 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 = "init",
|
|
srcs = glob(
|
|
[
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
],
|
|
),
|
|
deps = [
|
|
"//packages/platform-server",
|
|
],
|
|
)
|
|
|
|
tsec_test(
|
|
name = "tsec_test",
|
|
target = "init",
|
|
tsconfig = "//packages:tsec_config",
|
|
)
|