build(bazel): fix deps of test (#29799)

PR Close #29799
This commit is contained in:
Greg Magolan 2019-04-09 21:13:14 -07:00 committed by Ben Lesh
parent 8a3a556c0c
commit 506f478f08
1 changed files with 4 additions and 2 deletions

View File

@ -6,7 +6,6 @@ ts_library(
srcs = glob(["**/*.ts"]),
data = [
"//packages/core/schematics:migrations.json",
"@npm//shelljs",
],
deps = [
"//packages/core/schematics/migrations/static-queries",
@ -22,5 +21,8 @@ ts_library(
jasmine_node_test(
name = "test",
deps = [":test_lib"],
deps = [
":test_lib",
"@npm//shelljs",
],
)