https://github.com/angular/angular
Raw File
Tip revision: 1c04b83ea3076ebafb95c5d42bd4608a0ddaad64 authored by Alex Rickabaugh on 08 June 2017, 22:13:37 UTC
docs: add changelog for 4.2.0
Tip revision: 1c04b83
WORKSPACE
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")

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

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

node_repositories()
yarn_install(package_json = "//:package.json")
back to top