The ngtsc testing packages for file_system and logging were missing from the bazel deps rules, which means that they were not included in the releases PR Close #37977
18 lines
374 B
Python
18 lines
374 B
Python
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_library(
|
|
name = "testing",
|
|
srcs = glob([
|
|
"**/*.ts",
|
|
]),
|
|
deps = [
|
|
"//packages:types",
|
|
"//packages/compiler-cli/src/ngtsc/file_system",
|
|
"@npm//@types/jasmine",
|
|
"@npm//@types/node",
|
|
"@npm//typescript",
|
|
],
|
|
)
|