Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions docs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ def docs(source_dir = "docs", data = [], deps = [], scan_code = []):
)

py_binary(
name = "docs_combo_experimental",
tags = ["cli_help=Build full documentation with all dependencies:\nbazel run //:docs_combo_experimental"],
name = "docs_combo",
tags = ["cli_help=Build full documentation with all dependencies:\nbazel run //:docs_combo"],
srcs = ["@score_docs_as_code//src:incremental.py"],
data = data_with_docs_sources + [":merged_sourcelinks"],
deps = deps,
Expand All @@ -205,6 +205,12 @@ def docs(source_dir = "docs", data = [], deps = [], scan_code = []):
},
)

native.alias(
name = "docs_combo_experimental",
actual = ":docs_combo",
deprecation = "Target '//:docs_combo_experimental' is deprecated. Use '//:docs_combo' instead.",
)

py_binary(
name = "docs_link_check",
tags = ["cli_help=Verify Links inside Documentation:\nbazel run //:link_check\n (Note: this could take a long time)"],
Expand Down
2 changes: 1 addition & 1 deletion docs/concepts/bidirectional_traceability.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Build with copies

.. code-block:: sh

bazel run //:docs_combo_experimental
bazel run //:docs_combo

The documentation build does not depend on the needs.json but on whole documentation source code.

Expand Down
2 changes: 1 addition & 1 deletion docs/reference/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
| ---------------------------------------------- | ------------------------------------------------------------------------------------------------- |
| `bazel run //:docs` | Builds documentation |
| `bazel run //:docs_check` | Verifies documentation correctness |
| `bazel run //:docs_combo_experimental` | Builds combined documentation with all external dependencies included |
| `bazel run //:docs_combo` | Builds combined documentation with all external dependencies included |
| `bazel run //:live_preview` | Creates a live_preview of the documentation viewable in a local server |
| `bazel run //:live_preview_combo_experimental` | Creates a live_preview of the full documentation with all dependencies viewable in a local server |
| `bazel run //:ide_support` | Sets up a Python venv for esbonio (Remember to restart VS Code!) |
Expand Down
Loading