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