mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
tools/tsec.bzl is now part of tsec. Remove from Angular repo and update BUILD.bazel files. PR Close #44205
25 lines
455 B
Text
25 lines
455 B
Text
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",
|
|
)
|