parent
a01acec7fe
commit
ffc6e199bf
62
WORKSPACE
62
WORKSPACE
|
@ -5,28 +5,30 @@ workspace(name = "angular")
|
|||
#
|
||||
http_archive(
|
||||
name = "build_bazel_rules_typescript",
|
||||
url = "https://github.com/bazelbuild/rules_typescript/archive/0.17.0.zip",
|
||||
strip_prefix = "rules_typescript-0.17.0",
|
||||
sha256 = "1626ee2cc9770af6950bfc77dffa027f9aedf330fe2ea2ee7e504428927bd95d",
|
||||
strip_prefix = "rules_typescript-0.17.0",
|
||||
url = "https://github.com/bazelbuild/rules_typescript/archive/0.17.0.zip",
|
||||
)
|
||||
|
||||
load("@build_bazel_rules_typescript//:package.bzl", "rules_typescript_dependencies")
|
||||
|
||||
rules_typescript_dependencies()
|
||||
|
||||
http_archive(
|
||||
name = "bazel_toolchains",
|
||||
urls = [
|
||||
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/archive/5124557861ebf4c0b67f98180bff1f8551e0b421.tar.gz",
|
||||
"https://github.com/bazelbuild/bazel-toolchains/archive/5124557861ebf4c0b67f98180bff1f8551e0b421.tar.gz",
|
||||
],
|
||||
strip_prefix = "bazel-toolchains-5124557861ebf4c0b67f98180bff1f8551e0b421",
|
||||
sha256 = "c3b08805602cd1d2b67ebe96407c1e8c6ed3d4ce55236ae2efe2f1948f38168d",
|
||||
name = "bazel_toolchains",
|
||||
sha256 = "c3b08805602cd1d2b67ebe96407c1e8c6ed3d4ce55236ae2efe2f1948f38168d",
|
||||
strip_prefix = "bazel-toolchains-5124557861ebf4c0b67f98180bff1f8551e0b421",
|
||||
urls = [
|
||||
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/archive/5124557861ebf4c0b67f98180bff1f8551e0b421.tar.gz",
|
||||
"https://github.com/bazelbuild/bazel-toolchains/archive/5124557861ebf4c0b67f98180bff1f8551e0b421.tar.gz",
|
||||
],
|
||||
)
|
||||
|
||||
http_archive(
|
||||
name = "io_bazel_rules_sass",
|
||||
url = "https://github.com/bazelbuild/rules_sass/archive/1.11.0.zip",
|
||||
strip_prefix = "rules_sass-1.11.0",
|
||||
sha256 = "dbe9fb97d5a7833b2a733eebc78c9c1e3880f676ac8af16e58ccf2139cbcad03",
|
||||
strip_prefix = "rules_sass-1.11.0",
|
||||
url = "https://github.com/bazelbuild/rules_sass/archive/1.11.0.zip",
|
||||
)
|
||||
|
||||
# This commit matches the version of buildifier in angular/ngcontainer
|
||||
|
@ -36,25 +38,25 @@ BAZEL_BUILDTOOLS_VERSION = "49a6c199e3fbf5d94534b2771868677d3f9c6de9"
|
|||
|
||||
http_archive(
|
||||
name = "com_github_bazelbuild_buildtools",
|
||||
url = "https://github.com/bazelbuild/buildtools/archive/%s.zip" % BAZEL_BUILDTOOLS_VERSION,
|
||||
strip_prefix = "buildtools-%s" % BAZEL_BUILDTOOLS_VERSION,
|
||||
sha256 = "edf39af5fc257521e4af4c40829fffe8fba6d0ebff9f4dd69a6f8f1223ae047b",
|
||||
strip_prefix = "buildtools-%s" % BAZEL_BUILDTOOLS_VERSION,
|
||||
url = "https://github.com/bazelbuild/buildtools/archive/%s.zip" % BAZEL_BUILDTOOLS_VERSION,
|
||||
)
|
||||
|
||||
# Fetching the Bazel source code allows us to compile the Skylark linter
|
||||
http_archive(
|
||||
name = "io_bazel",
|
||||
url = "https://github.com/bazelbuild/bazel/archive/0.17.1.zip",
|
||||
strip_prefix = "bazel-0.17.1",
|
||||
sha256 = "ace8cced3b21e64a8fdad68508e9b0644201ec848ad583651719841d567fc66d",
|
||||
strip_prefix = "bazel-0.17.1",
|
||||
url = "https://github.com/bazelbuild/bazel/archive/0.17.1.zip",
|
||||
)
|
||||
|
||||
http_archive(
|
||||
name = "io_bazel_skydoc",
|
||||
sha256 = "7bfb5545f59792a2745f2523b9eef363f9c3e7274791c030885e7069f8116016",
|
||||
strip_prefix = "skydoc-fe2e9f888d28e567fef62ec9d4a93c425526d701",
|
||||
# TODO: switch to upstream when https://github.com/bazelbuild/skydoc/pull/103 is merged
|
||||
url = "https://github.com/alexeagle/skydoc/archive/fe2e9f888d28e567fef62ec9d4a93c425526d701.zip",
|
||||
strip_prefix = "skydoc-fe2e9f888d28e567fef62ec9d4a93c425526d701",
|
||||
sha256 = "7bfb5545f59792a2745f2523b9eef363f9c3e7274791c030885e7069f8116016",
|
||||
)
|
||||
|
||||
# We have a source dependency on the Devkit repository, because it's built with
|
||||
|
@ -65,16 +67,16 @@ http_archive(
|
|||
# ts_library rules in the devkit repository.
|
||||
http_archive(
|
||||
name = "angular_cli",
|
||||
url = "https://github.com/angular/angular-cli/archive/v6.1.0-rc.0.zip",
|
||||
strip_prefix = "angular-cli-6.1.0-rc.0",
|
||||
sha256 = "8cf320ea58c321e103f39087376feea502f20eaf79c61a4fdb05c7286c8684fd",
|
||||
strip_prefix = "angular-cli-6.1.0-rc.0",
|
||||
url = "https://github.com/angular/angular-cli/archive/v6.1.0-rc.0.zip",
|
||||
)
|
||||
|
||||
http_archive(
|
||||
name = "org_brotli",
|
||||
url = "https://github.com/google/brotli/archive/v1.0.5.zip",
|
||||
strip_prefix = "brotli-1.0.5",
|
||||
sha256 = "774b893a0700b0692a76e2e5b7e7610dbbe330ffbe3fe864b4b52ca718061d5a",
|
||||
strip_prefix = "brotli-1.0.5",
|
||||
url = "https://github.com/google/brotli/archive/v1.0.5.zip",
|
||||
)
|
||||
|
||||
#
|
||||
|
@ -104,21 +106,24 @@ If you are on a Mac and using Homebrew, there is a breaking change to the instal
|
|||
See https://blog.bazel.build/2018/08/22/bazel-homebrew.html
|
||||
|
||||
""")
|
||||
|
||||
node_repositories(
|
||||
node_version = "10.9.0",
|
||||
package_json = ["//:package.json"],
|
||||
preserve_symlinks = True,
|
||||
node_version = "10.9.0",
|
||||
yarn_version = "1.9.2",
|
||||
)
|
||||
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains")
|
||||
|
||||
go_rules_dependencies()
|
||||
|
||||
go_register_toolchains()
|
||||
|
||||
load("@io_bazel_rules_webtesting//web:repositories.bzl", "browser_repositories", "web_test_repositories")
|
||||
|
||||
web_test_repositories()
|
||||
|
||||
browser_repositories(
|
||||
chromium = True,
|
||||
firefox = True,
|
||||
|
@ -136,7 +141,20 @@ ng_setup_workspace()
|
|||
# Skylark documentation generation
|
||||
|
||||
load("@io_bazel_rules_sass//sass:sass_repositories.bzl", "sass_repositories")
|
||||
|
||||
sass_repositories()
|
||||
|
||||
load("@io_bazel_skydoc//skylark:skylark.bzl", "skydoc_repositories")
|
||||
|
||||
skydoc_repositories()
|
||||
|
||||
##################################
|
||||
# Prevent Bazel from trying to build rxjs under angular devkit
|
||||
local_repository(
|
||||
name = "rxjs_ignore_nested_1",
|
||||
path = "node_modules/@angular-devkit/core/node_modules/rxjs/src",
|
||||
)
|
||||
local_repository(
|
||||
name = "rxjs_ignore_nested_2",
|
||||
path = "node_modules/@angular-devkit/schematics/node_modules/rxjs/src",
|
||||
)
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
"@webcomponents/custom-elements": "^1.2.0",
|
||||
"classlist.js": "^1.1.20150312",
|
||||
"core-js": "^2.4.1",
|
||||
"rxjs": "6.2.2",
|
||||
"rxjs": "^6.3.0",
|
||||
"tslib": "^1.9.0",
|
||||
"web-animations-js": "^2.2.5",
|
||||
"zone.js": "^0.8.26"
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
"angular-in-memory-web-api": "^0.6.0",
|
||||
"core-js": "^2.5.4",
|
||||
"express": "^4.14.1",
|
||||
"rxjs": "^6.0.0",
|
||||
"rxjs": "^6.3.0",
|
||||
"systemjs": "0.19.39",
|
||||
"web-animations-js": "^2.3.1",
|
||||
"zone.js": "^0.8.24"
|
||||
|
|
File diff suppressed because it is too large
Load Diff
1757
aio/yarn.lock
1757
aio/yarn.lock
File diff suppressed because it is too large
Load Diff
|
@ -32,7 +32,7 @@
|
|||
"@schematics/angular": "^0.5.4",
|
||||
"core-js": "^2.4.1",
|
||||
"reflect-metadata": "^0.1.3",
|
||||
"rxjs": "^6.0.0",
|
||||
"rxjs": "^6.3.0",
|
||||
"tslib": "^1.7.1",
|
||||
"zone.js": "^0.8.26"
|
||||
},
|
||||
|
|
|
@ -62,6 +62,9 @@
|
|||
{
|
||||
"name": "ElementRef"
|
||||
},
|
||||
{
|
||||
"name": "EmptyErrorImpl"
|
||||
},
|
||||
{
|
||||
"name": "FLAGS"
|
||||
},
|
||||
|
@ -125,6 +128,9 @@
|
|||
{
|
||||
"name": "NullInjector"
|
||||
},
|
||||
{
|
||||
"name": "ObjectUnsubscribedErrorImpl"
|
||||
},
|
||||
{
|
||||
"name": "Optional"
|
||||
},
|
||||
|
@ -182,6 +188,9 @@
|
|||
{
|
||||
"name": "TemplateRef"
|
||||
},
|
||||
{
|
||||
"name": "UnsubscriptionErrorImpl"
|
||||
},
|
||||
{
|
||||
"name": "VIEWS"
|
||||
},
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
{
|
||||
"name": "EMPTY_ARRAY$1"
|
||||
},
|
||||
{
|
||||
"name": "EmptyErrorImpl"
|
||||
},
|
||||
{
|
||||
"name": "FLAGS"
|
||||
},
|
||||
|
@ -68,6 +71,9 @@
|
|||
{
|
||||
"name": "NO_CHANGE"
|
||||
},
|
||||
{
|
||||
"name": "ObjectUnsubscribedErrorImpl"
|
||||
},
|
||||
{
|
||||
"name": "PARENT"
|
||||
},
|
||||
|
@ -89,6 +95,9 @@
|
|||
{
|
||||
"name": "TVIEW"
|
||||
},
|
||||
{
|
||||
"name": "UnsubscriptionErrorImpl"
|
||||
},
|
||||
{
|
||||
"name": "VIEWS"
|
||||
},
|
||||
|
|
|
@ -650,6 +650,9 @@
|
|||
{
|
||||
"name": "EmitterVisitorContext"
|
||||
},
|
||||
{
|
||||
"name": "EmptyErrorImpl"
|
||||
},
|
||||
{
|
||||
"name": "EmptyExpr"
|
||||
},
|
||||
|
@ -1097,6 +1100,9 @@
|
|||
{
|
||||
"name": "ObjectUnsubscribedError"
|
||||
},
|
||||
{
|
||||
"name": "ObjectUnsubscribedErrorImpl"
|
||||
},
|
||||
{
|
||||
"name": "Observable"
|
||||
},
|
||||
|
@ -1592,6 +1598,9 @@
|
|||
{
|
||||
"name": "UnsubscriptionError"
|
||||
},
|
||||
{
|
||||
"name": "UnsubscriptionErrorImpl"
|
||||
},
|
||||
{
|
||||
"name": "UrlResolver"
|
||||
},
|
||||
|
@ -1938,22 +1947,16 @@
|
|||
"name": "__extends$5"
|
||||
},
|
||||
{
|
||||
"name": "__extends$6"
|
||||
"name": "__extends$l"
|
||||
},
|
||||
{
|
||||
"name": "__extends$7"
|
||||
"name": "__extends$m"
|
||||
},
|
||||
{
|
||||
"name": "__extends$q"
|
||||
"name": "__extends$n"
|
||||
},
|
||||
{
|
||||
"name": "__extends$r"
|
||||
},
|
||||
{
|
||||
"name": "__extends$s"
|
||||
},
|
||||
{
|
||||
"name": "__extends$u"
|
||||
"name": "__extends$p"
|
||||
},
|
||||
{
|
||||
"name": "__metadata"
|
||||
|
@ -2363,6 +2366,9 @@
|
|||
{
|
||||
"name": "camelCaseToDashCase"
|
||||
},
|
||||
{
|
||||
"name": "canReportError"
|
||||
},
|
||||
{
|
||||
"name": "checkAndUpdateBinding"
|
||||
},
|
||||
|
@ -3158,6 +3164,9 @@
|
|||
{
|
||||
"name": "isIdentifierStart"
|
||||
},
|
||||
{
|
||||
"name": "isInteropObservable"
|
||||
},
|
||||
{
|
||||
"name": "isIterable"
|
||||
},
|
||||
|
@ -3191,9 +3200,6 @@
|
|||
{
|
||||
"name": "isObject"
|
||||
},
|
||||
{
|
||||
"name": "isObservable"
|
||||
},
|
||||
{
|
||||
"name": "isObservable$1"
|
||||
},
|
||||
|
@ -3221,9 +3227,6 @@
|
|||
{
|
||||
"name": "isStyleUrlResolvable"
|
||||
},
|
||||
{
|
||||
"name": "isTrustedSubscriber"
|
||||
},
|
||||
{
|
||||
"name": "isType"
|
||||
},
|
||||
|
|
|
@ -8,6 +8,9 @@
|
|||
{
|
||||
"name": "EMPTY_ARRAY$2"
|
||||
},
|
||||
{
|
||||
"name": "EmptyErrorImpl"
|
||||
},
|
||||
{
|
||||
"name": "INJECTOR"
|
||||
},
|
||||
|
@ -32,6 +35,9 @@
|
|||
{
|
||||
"name": "NullInjector"
|
||||
},
|
||||
{
|
||||
"name": "ObjectUnsubscribedErrorImpl"
|
||||
},
|
||||
{
|
||||
"name": "Optional"
|
||||
},
|
||||
|
@ -56,6 +62,9 @@
|
|||
{
|
||||
"name": "USE_VALUE"
|
||||
},
|
||||
{
|
||||
"name": "UnsubscriptionErrorImpl"
|
||||
},
|
||||
{
|
||||
"name": "_THROW_IF_NOT_FOUND"
|
||||
},
|
||||
|
|
|
@ -47,6 +47,9 @@
|
|||
{
|
||||
"name": "ElementRef"
|
||||
},
|
||||
{
|
||||
"name": "EmptyErrorImpl"
|
||||
},
|
||||
{
|
||||
"name": "FLAGS"
|
||||
},
|
||||
|
@ -116,6 +119,9 @@
|
|||
{
|
||||
"name": "NullInjector"
|
||||
},
|
||||
{
|
||||
"name": "ObjectUnsubscribedErrorImpl"
|
||||
},
|
||||
{
|
||||
"name": "Optional"
|
||||
},
|
||||
|
@ -194,6 +200,9 @@
|
|||
{
|
||||
"name": "TodoStore"
|
||||
},
|
||||
{
|
||||
"name": "UnsubscriptionErrorImpl"
|
||||
},
|
||||
{
|
||||
"name": "VIEWS"
|
||||
},
|
||||
|
|
|
@ -281,6 +281,9 @@
|
|||
{
|
||||
"name": "ElementRef"
|
||||
},
|
||||
{
|
||||
"name": "EmptyErrorImpl"
|
||||
},
|
||||
{
|
||||
"name": "EmulatedEncapsulationDomRenderer2"
|
||||
},
|
||||
|
@ -599,6 +602,9 @@
|
|||
{
|
||||
"name": "ObjectUnsubscribedError"
|
||||
},
|
||||
{
|
||||
"name": "ObjectUnsubscribedErrorImpl"
|
||||
},
|
||||
{
|
||||
"name": "Observable"
|
||||
},
|
||||
|
@ -875,6 +881,9 @@
|
|||
{
|
||||
"name": "UnsubscriptionError"
|
||||
},
|
||||
{
|
||||
"name": "UnsubscriptionErrorImpl"
|
||||
},
|
||||
{
|
||||
"name": "UpperCasePipe"
|
||||
},
|
||||
|
@ -957,22 +966,16 @@
|
|||
"name": "__extends$5"
|
||||
},
|
||||
{
|
||||
"name": "__extends$6"
|
||||
"name": "__extends$l"
|
||||
},
|
||||
{
|
||||
"name": "__extends$7"
|
||||
"name": "__extends$m"
|
||||
},
|
||||
{
|
||||
"name": "__extends$q"
|
||||
"name": "__extends$n"
|
||||
},
|
||||
{
|
||||
"name": "__extends$r"
|
||||
},
|
||||
{
|
||||
"name": "__extends$s"
|
||||
},
|
||||
{
|
||||
"name": "__extends$u"
|
||||
"name": "__extends$p"
|
||||
},
|
||||
{
|
||||
"name": "__read"
|
||||
|
@ -1223,6 +1226,9 @@
|
|||
{
|
||||
"name": "canInsertNativeNode"
|
||||
},
|
||||
{
|
||||
"name": "canReportError"
|
||||
},
|
||||
{
|
||||
"name": "checkFullData"
|
||||
},
|
||||
|
@ -1943,6 +1949,9 @@
|
|||
{
|
||||
"name": "isFunction"
|
||||
},
|
||||
{
|
||||
"name": "isInteropObservable"
|
||||
},
|
||||
{
|
||||
"name": "isIterable"
|
||||
},
|
||||
|
@ -1961,9 +1970,6 @@
|
|||
{
|
||||
"name": "isObject"
|
||||
},
|
||||
{
|
||||
"name": "isObservable"
|
||||
},
|
||||
{
|
||||
"name": "isObservable$1"
|
||||
},
|
||||
|
@ -1988,9 +1994,6 @@
|
|||
{
|
||||
"name": "isTemplateElement"
|
||||
},
|
||||
{
|
||||
"name": "isTrustedSubscriber"
|
||||
},
|
||||
{
|
||||
"name": "isTypeProvider"
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue