build: Move non-bazel deps to devDependencies (#26691)

This makes yarn_install of ngdeps under Bazel faster, since we don't need many of the large dependencies.
It's important because downstream angular/bazel users will observe the same install time.

PR Close #26691
This commit is contained in:
Alex Eagle
2018-10-22 14:26:52 -07:00
committed by Matias Niemelä
parent e9ae26a272
commit cd444bc2ba
5 changed files with 72 additions and 41 deletions

View File

@ -6,6 +6,16 @@ load(
"rules_angular_dev_dependencies",
)
# Uncomment for local bazel rules development
#local_repository(
# name = "build_bazel_rules_nodejs",
# path = "../rules_nodejs",
#)
#local_repository(
# name = "build_bazel_rules_typescript",
# path = "../rules_typescript",
#)
# Angular Bazel users will call this function
rules_angular_dependencies()
# These are the dependencies only for us