build: rename angular_devkit dependency to angular_cli (#24842)
PR Close #24842
This commit is contained in:
parent
ba3eb8b654
commit
06a33984af
@ -58,7 +58,7 @@ http_archive(
|
|||||||
# Even better, things like aspects will visit the entire graph including
|
# Even better, things like aspects will visit the entire graph including
|
||||||
# ts_library rules in the devkit repository.
|
# ts_library rules in the devkit repository.
|
||||||
http_archive(
|
http_archive(
|
||||||
name = "angular_devkit",
|
name = "angular_cli",
|
||||||
url = "https://github.com/angular/angular-cli/archive/v6.1.0-rc.0.zip",
|
url = "https://github.com/angular/angular-cli/archive/v6.1.0-rc.0.zip",
|
||||||
strip_prefix = "angular-cli-6.1.0-rc.0",
|
strip_prefix = "angular-cli-6.1.0-rc.0",
|
||||||
sha256 = "8cf320ea58c321e103f39087376feea502f20eaf79c61a4fdb05c7286c8684fd",
|
sha256 = "8cf320ea58c321e103f39087376feea502f20eaf79c61a4fdb05c7286c8684fd",
|
||||||
|
@ -14,7 +14,7 @@ load("@build_bazel_rules_nodejs//:defs.bzl", "nodejs_binary")
|
|||||||
|
|
||||||
nodejs_binary(
|
nodejs_binary(
|
||||||
name = "rollup_with_build_optimizer",
|
name = "rollup_with_build_optimizer",
|
||||||
data = ["@angular_devkit//packages/angular_devkit/build_optimizer:lib"],
|
data = ["@angular_cli//packages/angular_devkit/build_optimizer:lib"],
|
||||||
# Since our rule extends the one in rules_nodejs, we use the same runtime
|
# Since our rule extends the one in rules_nodejs, we use the same runtime
|
||||||
# dependency @build_bazel_rules_nodejs_rollup_deps. We don't need any
|
# dependency @build_bazel_rules_nodejs_rollup_deps. We don't need any
|
||||||
# additional npm dependencies when we run rollup or uglify.
|
# additional npm dependencies when we run rollup or uglify.
|
||||||
|
@ -24,7 +24,7 @@ load(":esm5.bzl", "esm5_outputs_aspect", "flatten_esm5", "esm5_root_dir")
|
|||||||
PACKAGES=["packages/core/src", "packages/common/src", "packages/compiler/src", "external/rxjs"]
|
PACKAGES=["packages/core/src", "packages/common/src", "packages/compiler/src", "external/rxjs"]
|
||||||
PLUGIN_CONFIG="{sideEffectFreeModules: [\n%s]}" % ",\n".join(
|
PLUGIN_CONFIG="{sideEffectFreeModules: [\n%s]}" % ",\n".join(
|
||||||
[" '.esm5/{0}'".format(p) for p in PACKAGES])
|
[" '.esm5/{0}'".format(p) for p in PACKAGES])
|
||||||
BO_ROLLUP="angular_devkit/packages/angular_devkit/build_optimizer/src/build-optimizer/rollup-plugin.js"
|
BO_ROLLUP="angular_cli/packages/angular_devkit/build_optimizer/src/build-optimizer/rollup-plugin.js"
|
||||||
BO_PLUGIN="require('%s').default(%s)" % (BO_ROLLUP, PLUGIN_CONFIG)
|
BO_PLUGIN="require('%s').default(%s)" % (BO_ROLLUP, PLUGIN_CONFIG)
|
||||||
|
|
||||||
def _use_plain_rollup(ctx):
|
def _use_plain_rollup(ctx):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user