Anthony Humes ba1e25f53f fix(router): take base uri into account in setUpLocationSync() (#20244)
Normalize the full URL (including the base uri) before passing it to
`router.navigateByUrl()`.

Fixes #20061

PR Close #20244
2018-08-06 11:11:07 -07:00

23 lines
445 B
Python

package(default_visibility = ["//visibility:public"])
exports_files(["package.json"])
load("//tools:defaults.bzl", "ng_module")
ng_module(
name = "upgrade",
srcs = glob(
[
"*.ts",
"src/**/*.ts",
],
),
module_name = "@angular/router/upgrade",
deps = [
"//packages/common",
"//packages/core",
"//packages/router",
"//packages/upgrade/static",
],
)