-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWORKSPACE
67 lines (45 loc) · 1.59 KB
/
WORKSPACE
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
workspace(name = "r5js")
# enforced by check_bazel_version below
BAZEL_VERSION = "0.24.0"
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
# Needed to build buildifier.
git_repository(
name = "io_bazel_rules_go",
remote = "https://github.com/bazelbuild/rules_go.git",
tag = "0.18.1",
)
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
go_rules_dependencies()
go_register_toolchains()
git_repository(
name = "com_github_bazelbuild_buildtools",
remote = "https://github.com/bazelbuild/buildtools.git",
tag = "0.22.0",
)
load("@com_github_bazelbuild_buildtools//buildifier:deps.bzl", "buildifier_dependencies")
buildifier_dependencies()
git_repository(
name = "build_bazel_rules_nodejs",
remote = "https://github.com/bazelbuild/rules_nodejs.git",
tag = "0.27.8",
)
load("@build_bazel_rules_nodejs//:defs.bzl", "check_bazel_version", "yarn_install")
check_bazel_version(BAZEL_VERSION)
yarn_install(
name = "npm",
package_json = "//:package.json",
yarn_lock = "//:yarn.lock",
)
load("@npm//:install_bazel_dependencies.bzl", "install_bazel_dependencies")
install_bazel_dependencies()
load("@npm_bazel_karma//:package.bzl", "rules_karma_dependencies")
rules_karma_dependencies()
load("@io_bazel_rules_webtesting//web:repositories.bzl", "web_test_repositories")
web_test_repositories()
git_repository(
name = "bazel_pandoc",
remote = "https://github.com/ProdriveTechnologies/bazel-pandoc.git",
tag = "v0.2",
)
load("@bazel_pandoc//:repositories.bzl", "pandoc_repositories")
pandoc_repositories()