https://github.com/angular/angular
Raw File
Tip revision: f09a266e01e746c802c4d0e132f78a05612ea177 authored by Miško Hevery on 23 August 2017, 20:01:42 UTC
docs: add changelog for 4.3.6
Tip revision: f09a266
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