Skip to content

Commit 8981cf9

Browse files
committed
fix: review feedback
1 parent 1ec8318 commit 8981cf9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@ def docs(source_dir = "docs", data = [], deps = [], scan_code = [], known_good =
198198
data_with_docs_sources = _rewrite_needs_json_to_docs_sources(data)
199199
additional_combo_sourcelinks = _rewrite_needs_json_to_sourcelinks(data)
200200
_merge_sourcelinks(name = "merged_sourcelinks", sourcelinks = [":sourcelinks_json"] + additional_combo_sourcelinks, known_good = known_good)
201-
docs_data = data + [":sourcelinks_json"]
202-
combo_data = data_with_docs_sources + [":merged_sourcelinks"]
201+
docs_data = data + metamodel_data + [":sourcelinks_json"]
202+
combo_data = data_with_docs_sources + metamodel_data + [":merged_sourcelinks"]
203203

204204
docs_env = {
205205
"SOURCE_DIRECTORY": source_dir,
@@ -307,7 +307,7 @@ def docs(source_dir = "docs", data = [], deps = [], scan_code = [], known_good =
307307
] + metamodel_opts,
308308
formats = ["needs"],
309309
sphinx = ":sphinx_build",
310-
tools = data,
310+
tools = data + metamodel_data,
311311
visibility = ["//visibility:public"],
312312
# Persistent workers cause stale symlinks after dependency version
313313
# changes, corrupting the Bazel cache.

0 commit comments

Comments
 (0)