Revision ee5591d5836f4dec84f5121451cd407705253491 authored by Vikram Subramanian on 11 August 2017, 00:18:37 UTC, committed by Miško Hevery on 23 August 2017, 18:18:47 UTC
Make sure the callbacks to the NgZone callbacks run in the right zone
with or without the rxjs Zone patch -
https://github.com/angular/zone.js/commit/1ed83d08ac2ce840c9669df27a18f0c35cb689c3.

PR Close #18706
1 parent 1f43713
Raw File
WORKSPACE
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")

git_repository(
   name = "build_bazel_rules_typescript",
   remote = "https://github.com/bazelbuild/rules_typescript.git",
   tag = "0.0.5",
)

load("@build_bazel_rules_typescript//:defs.bzl", "node_repositories")

node_repositories(package_json = "//:package.json")

git_repository(
    name = "build_bazel_rules_angular",
    remote = "https://github.com/bazelbuild/rules_angular.git",
    tag = "0.0.1",
)
back to top