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:
parent
82a2207f4a
commit
6eb868b63a
|
@ -61,6 +61,8 @@ pkg_npm(
|
||||||
deps = [
|
deps = [
|
||||||
":compiler-cli",
|
":compiler-cli",
|
||||||
"//packages/compiler-cli/ngcc",
|
"//packages/compiler-cli/ngcc",
|
||||||
|
"//packages/compiler-cli/src/ngtsc/file_system/testing",
|
||||||
|
"//packages/compiler-cli/src/ngtsc/logging/testing",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -4,13 +4,14 @@ package(default_visibility = ["//visibility:public"])
|
||||||
|
|
||||||
ts_library(
|
ts_library(
|
||||||
name = "testing",
|
name = "testing",
|
||||||
testonly = True,
|
|
||||||
srcs = glob([
|
srcs = glob([
|
||||||
"**/*.ts",
|
"**/*.ts",
|
||||||
]),
|
]),
|
||||||
deps = [
|
deps = [
|
||||||
"//packages:types",
|
"//packages:types",
|
||||||
"//packages/compiler-cli/src/ngtsc/file_system",
|
"//packages/compiler-cli/src/ngtsc/file_system",
|
||||||
|
"@npm//@types/jasmine",
|
||||||
|
"@npm//@types/node",
|
||||||
"@npm//typescript",
|
"@npm//typescript",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
|
@ -4,7 +4,6 @@ package(default_visibility = ["//visibility:public"])
|
||||||
|
|
||||||
ts_library(
|
ts_library(
|
||||||
name = "testing",
|
name = "testing",
|
||||||
testonly = True,
|
|
||||||
srcs = glob([
|
srcs = glob([
|
||||||
"**/*.ts",
|
"**/*.ts",
|
||||||
]),
|
]),
|
||||||
|
|
Loading…
Reference in New Issue