2017-06-02 12:43:52 -04:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
|
|
|
|
|
|
|
|
git_repository(
|
2017-07-21 17:11:35 -04:00
|
|
|
name = "build_bazel_rules_typescript",
|
2017-06-21 00:08:20 -04:00
|
|
|
remote = "https://github.com/bazelbuild/rules_typescript.git",
|
2017-08-21 11:23:47 -04:00
|
|
|
tag = "0.0.6",
|
2017-06-02 12:43:52 -04:00
|
|
|
)
|
|
|
|
|
2017-07-21 17:11:35 -04:00
|
|
|
load("@build_bazel_rules_typescript//:defs.bzl", "node_repositories")
|
2017-06-02 12:43:52 -04:00
|
|
|
|
2017-06-21 00:08:20 -04:00
|
|
|
node_repositories(package_json = "//:package.json")
|
2017-07-21 17:11:35 -04:00
|
|
|
|
|
|
|
git_repository(
|
|
|
|
name = "build_bazel_rules_angular",
|
|
|
|
remote = "https://github.com/bazelbuild/rules_angular.git",
|
|
|
|
tag = "0.0.1",
|
|
|
|
)
|