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
14 changes: 3 additions & 11 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -27,24 +27,16 @@ docs(
],
bundles = [
{
"bundle": "//src/extensions/score_mounts/docs:concept",
"mount_at": "concepts/mounts",
},
{
"bundle": "//src/extensions/score_mounts/docs:howto",
"mount_at": "how-to/mounts",
},
{
"bundle": "//src/extensions/score_mounts/docs:internals",
"mount_at": "internals/extensions/mounts",
"bundle": "//src/extensions/docs:extensions",
"mount_at": "internals/extensions",
},
{
"bundle": "//src/extensions/score_metamodel/docs:metamodel",
"mount_at": "reference/metamodel",
"attach_to": "reference/index",
},
],
scan_code = [
code_targets = [
"//scripts_bazel:sources",
"//src:all_sources",
],
Expand Down
1 change: 1 addition & 0 deletions docs/concepts/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ Here you find explanations how and why docs-as-code works the way it does.
bidirectional_traceability
cross_module_compatibility
docs_deps
mounts/index
1 change: 1 addition & 0 deletions docs/how-to/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Here you find practical guides on how to use docs-as-code.
write_docs
other_modules
cross_module_compatibility
mounts/index
dashboards_and_quality_gates
source_to_doc_links
test_to_doc_links
Expand Down
Binary file removed docs/internals/extensions/data_flow.png
Binary file not shown.
1 change: 0 additions & 1 deletion docs/internals/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ This section is not relevant for users of docs-as-code but for developers extend
.. toctree::
:maxdepth: 1

extensions/index
benchmark_results
decisions/index
requirements/index
Empty file removed src/extensions/.gitkeep
Empty file.
20 changes: 0 additions & 20 deletions src/extensions/decision_record.md

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,8 @@

load("//:docs.bzl", "docs_bundle")

# The mount feature's own documentation, mounted back into the site via the
# mount feature itself (dogfooding). One subdirectory per bundle: mounts are
# directory-scoped, so co-locating both files in one dir would graft both at
# each mount point.
docs_bundle(
name = "concept",
source_dir = "concept",
visibility = ["//visibility:public"],
)

docs_bundle(
name = "howto",
source_dir = "howto",
visibility = ["//visibility:public"],
)

docs_bundle(
name = "internals",
source_dir = "internals",
name = "extensions",
source_dir = "",
visibility = ["//visibility:public"],
)
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@ Extensions
`ubCode <https://ubcode.useblocks.com>`__ VS Code extension.
Getting IDE support for Sphinx-Needs in a Bazel context made easy.

.. grid-item-card::

Mounts
^^^
Architecture and design of the ``score_mounts`` bridge extension.
:ref:`Mounts Extension Internals<score_mounts_internals>`


.. toctree::
Expand All @@ -74,3 +80,4 @@ Extensions
Source Code Linker <source_code_linker>
Extension Guide <extension_guide>
Sync TOML <sync_toml>
mounts_internals
Loading