-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWORKSPACE
More file actions
29 lines (24 loc) · 755 Bytes
/
WORKSPACE
File metadata and controls
29 lines (24 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
workspace(name = "org_pubref_rules_typescript")
git_repository(
name = "io_bazel_rules_closure",
remote = "https://github.com/bazelbuild/rules_closure.git",
tag = "0.4.0",
)
load("@io_bazel_rules_closure//closure:defs.bzl", "closure_repositories")
closure_repositories()
git_repository(
name = "org_pubref_rules_node",
remote = "https://github.com/pubref/rules_node.git",
tag = "v0.3.2",
)
load("@org_pubref_rules_node//node:rules.bzl", "node_repositories", "npm_repository")
node_repositories()
load("//ts:rules.bzl", "ts_repositories")
ts_repositories()
npm_repository(
name = "npm_mocha",
deps = {
"mocha": "3.1.0",
},
#sha256 = "9b48987065bb42003bab81b4538afa9ac194d217d8e2e770a5cba782249f7dc8",
)