Files
angular-docs-cn/WORKSPACE
T

13 lines
370 B
Python
Raw Normal View History

2017-06-02 09:43:52 -07:00
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",
2017-06-12 16:03:47 -07:00
commit = "804c5da",
2017-06-02 09:43:52 -07:00
)
2017-06-12 16:03:47 -07:00
load("@io_bazel_rules_typescript//:defs.bzl", "node_repositories", "npm_install")
2017-06-02 09:43:52 -07:00
node_repositories()
2017-06-12 16:03:47 -07:00
npm_install(package_json = "//:package.json")