build: ts-api-guardian npm package contains invalid references (#31096)

Currently when building the `ts-api-guardian` npm package,
the labels are not properly replaced after recent changes to
the `entry_point` attribute. This means that the `ts-api-guardian`
package is currently not usable externally.

PR Close #31096
This commit is contained in:
Paul Gschwendtner 2019-06-17 19:55:02 +02:00 committed by Andrew Kushnir
parent beaab27a49
commit 16ac611a84
1 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ def ts_api_guardian_test(
nodejs_test(
name = name,
data = data,
entry_point = "//tools/ts-api-guardian:bin/ts-api-guardian",
entry_point = "@angular//tools/ts-api-guardian:bin/ts-api-guardian",
templated_args = args + ["--verify", golden, actual],
**kwargs
)
@ -70,7 +70,7 @@ def ts_api_guardian_test(
name = name + ".accept",
testonly = True,
data = data,
entry_point = "//tools/ts-api-guardian:bin/ts-api-guardian",
entry_point = "@angular//tools/ts-api-guardian:bin/ts-api-guardian",
templated_args = args + ["--out", golden, actual],
**kwargs
)