build(compiler-cli): fix bazel deps rules for ngtsc testing packages (#37977)

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
This commit is contained in:
Olivier Combe 2020-07-08 16:23:02 +02:00 committed by Alex Rickabaugh
parent 82a2207f4a
commit 6eb868b63a
3 changed files with 4 additions and 2 deletions

View File

@ -61,6 +61,8 @@ pkg_npm(
deps = [
":compiler-cli",
"//packages/compiler-cli/ngcc",
"//packages/compiler-cli/src/ngtsc/file_system/testing",
"//packages/compiler-cli/src/ngtsc/logging/testing",
],
)

View File

@ -4,13 +4,14 @@ package(default_visibility = ["//visibility:public"])
ts_library(
name = "testing",
testonly = True,
srcs = glob([
"**/*.ts",
]),
deps = [
"//packages:types",
"//packages/compiler-cli/src/ngtsc/file_system",
"@npm//@types/jasmine",
"@npm//@types/node",
"@npm//typescript",
],
)

View File

@ -4,7 +4,6 @@ package(default_visibility = ["//visibility:public"])
ts_library(
name = "testing",
testonly = True,
srcs = glob([
"**/*.ts",
]),