forked from fwouts/prmonitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
23 lines (20 loc) · 801 Bytes
/
WORKSPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Required for access to js_library, js_test, web_bundle, etc.
git_repository(
name = "bazel_javascript",
remote = "https://github.com/zenclabs/bazel-javascript.git",
tag = "0.0.24",
)
# Required for underlying dependencies such as Node and Yarn.
git_repository(
name = "build_bazel_rules_nodejs",
remote = "https://github.com/bazelbuild/rules_nodejs.git",
tag = "0.10.0",
)
load("@build_bazel_rules_nodejs//:defs.bzl", "node_repositories")
# By default, the Node and Yarn versions you have installed locally will be
# ignored, and Bazel will install a separate version instead. This helps
# achieve consistency across teams.
#
# See https://github.com/bazelbuild/rules_nodejs if you'd like to use your
# local Node and Yarn binaries instead.
node_repositories(package_json = [])