mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
d5a8ff39b9
Update Glob to fast-glob to remove the dependence of Inflight that contains a memory leak Signed-off-by: Kevin Gay <5970002+GayKevin@users.noreply.github.com> PR Close #50632
37 lines
1.0 KiB
Python
37 lines
1.0 KiB
Python
load("//tools:defaults.bzl", "jasmine_node_test", "ts_library")
|
|
|
|
ts_library(
|
|
name = "test_lib",
|
|
testonly = True,
|
|
srcs = glob(
|
|
["**/*.ts"],
|
|
),
|
|
visibility = ["//packages/localize/tools/test:__subpackages__"],
|
|
deps = [
|
|
"//packages:types",
|
|
"//packages/compiler",
|
|
"//packages/compiler-cli/private",
|
|
"//packages/compiler-cli/src/ngtsc/file_system",
|
|
"//packages/compiler-cli/src/ngtsc/file_system/testing",
|
|
"//packages/compiler-cli/src/ngtsc/logging/testing",
|
|
"//packages/localize",
|
|
"//packages/localize/src/utils",
|
|
"//packages/localize/tools",
|
|
"//packages/localize/tools/test/helpers",
|
|
"@npm//@babel/generator",
|
|
"@npm//@babel/template",
|
|
"@npm//@types/babel__generator",
|
|
"@npm//@types/babel__template",
|
|
"@npm//fast-glob",
|
|
],
|
|
)
|
|
|
|
jasmine_node_test(
|
|
name = "test",
|
|
bootstrap = ["//tools/testing:node_no_angular"],
|
|
deps = [
|
|
":test_lib",
|
|
"@npm//fast-glob",
|
|
],
|
|
)
|