fix(bazel): specify the package and lock files using the workspace (#25694)

PR Close #25694
This commit is contained in:
Alan Agius
2018-08-28 20:04:21 +02:00
committed by Igor Minar
parent 62be8c2e2f
commit ddc13352e9
5 changed files with 23 additions and 7 deletions

View File

@ -244,14 +244,14 @@ filegroup(
yarn_install(
name = "ts-api-guardian_runtime_deps",
package_json = "//tools/ts-api-guardian:package.json",
yarn_lock = "//tools/ts-api-guardian:yarn.lock",
package_json = "@angular//tools/ts-api-guardian:package.json",
yarn_lock = "@angular//tools/ts-api-guardian:yarn.lock",
)
yarn_install(
name = "http-server_runtime_deps",
package_json = "//tools/http-server:package.json",
yarn_lock = "//tools/http-server:yarn.lock",
package_json = "@angular//tools/http-server:package.json",
yarn_lock = "@angular//tools/http-server:yarn.lock",
)
_ng_setup_workspace()