fix(bazel): complete the rollup globals list for all angular entrypoints (#23080)

PR Close #23080
This commit is contained in:
Igor Minar 2018-03-28 18:19:00 -07:00
parent 481b22ecb0
commit 439030fb57
1 changed files with 28 additions and 5 deletions

View File

@ -20,14 +20,37 @@ load("//packages/bazel/src:esm5.bzl", "esm5_outputs_aspect", "ESM5Info")
# TODO(alexeagle): this list is incomplete, add more as material ramps up
WELL_KNOWN_GLOBALS = {
"@angular/core": "ng.core",
"@angular/upgrade": "ng.upgrade",
"@angular/upgrade/static": "ng.upgrade.static",
"@angular/forms": "ng.forms",
"@angular/core/testing": "ng.core.testing",
"@angular/core": "ng.core",
"@angular/platform-server/testing": "ng.platformServer.testing",
"@angular/platform-server": "ng.platformServer",
"@angular/platform-webworker-dynamic": "ng.platformWebworkerDynamic",
"@angular/platform-webworker": "ng.platformWebworker",
"@angular/common/testing": "ng.common.testing",
"@angular/common": "ng.common",
"@angular/compiler": "ng.compiler",
"@angular/compiler/testing": "ng.compiler.testing",
"@angular/platform-browser": "ng.platformBrowser",
"@angular/platform-browser/testing": "ng.platformBrowser.testing",
"@angular/common/http/testing": "ng.common.http.testing",
"@angular/common/http": "ng.common.http",
"@angular/elements": "ng.elements",
"@angular/http/testing": "ng.http.testing",
"@angular/http": "ng.http",
"@angular/platform-browser-dynamic/testing": "ng.platformBrowserDynamic.testing",
"@angular/platform-browser-dynamic": "ng.platformBrowserDynamic",
"@angular/compiler/testing": "ng.compiler.testing",
"@angular/compiler": "ng.compiler",
"@angular/animations": "ng.animations",
"@angular/animations/browser/testing": "ng.animations.browser.testing",
"@angular/animations/browser": "ng.animations.browser",
"@angular/service-worker/config": "ng.serviceWorker.config",
"@angular/service-worker": "ng.serviceWorker",
"@angular/platform-browser/testing": "ng.platformBrowser.testing",
"@angular/platform-browser": "ng.platformBrowser",
"@angular/platform-browser/animations": "ng.platformBrowser.animations",
"@angular/router/upgrade": "ng.router.upgrade",
"@angular/router/testing": "ng.router.testing",
"@angular/router": "ng.router",
"rxjs": "rxjs",
"rxjs/operators": "rxjs.operators",
}