aboutsummaryrefslogtreecommitdiff
path: root/WORKSPACE
diff options
context:
space:
mode:
authorc-parsons <cparsons@google.com>2019-02-28 17:43:57 -0500
committerGitHub <noreply@github.com>2019-02-28 17:43:57 -0500
commit9630853eebaee22d8799f97ab58f648a1b82d02d (patch)
treeceb6c78087d99934605d568b734b99a38269569f /WORKSPACE
parente171ec16d89afe28d09d29837ce523aa10aebdc6 (diff)
downloadbazel-skylib-9630853eebaee22d8799f97ab58f648a1b82d02d.tar.gz
add documentation pages for rules/ and lib/ (#119)
Diffstat (limited to 'WORKSPACE')
-rw-r--r--WORKSPACE13
1 files changed, 13 insertions, 0 deletions
diff --git a/WORKSPACE b/WORKSPACE
index e0f2a0a..4ae2edc 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -3,3 +3,16 @@ workspace(name = "bazel_skylib")
load(":workspace.bzl", "bazel_skylib_workspace")
bazel_skylib_workspace()
+
+# Below this line is for documentation generation only,
+# and should thus not be included by dependencies on
+# bazel-skylib.
+
+load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
+git_repository(
+ name = "io_bazel_skydoc",
+ remote = "https://github.com/bazelbuild/skydoc.git",
+ commit = "ac5c106412697ffb9364864070bac796b9bb63d3", # Feb 27, 2019
+)
+load("@io_bazel_skydoc//skylark:skylark.bzl", "skydoc_repositories")
+skydoc_repositories()