From 052e11940d7d7e6a8eb380cf01c942708277f5b2 Mon Sep 17 00:00:00 2001 From: Vecko <36369090+VeckoTheGecko@users.noreply.github.com> Date: Fri, 13 Feb 2026 18:40:49 +0100 Subject: [PATCH] MAINT: Add doc-watch Pixi task Fixes #10786 --- pixi.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pixi.toml b/pixi.toml index 639a8683dc1..60c064162b0 100644 --- a/pixi.toml +++ b/pixi.toml @@ -233,6 +233,7 @@ sphinx-design = "*" sphinx-inline-tabs = "*" sphinx-llm = ">=0.2.1" sphinx = ">=6,<8" +sphinx-autobuild = "*" sphinxcontrib-mermaid = "*" sphinxcontrib-srclinks = "*" sphinx-remove-toctrees = "*" @@ -243,6 +244,7 @@ cfgrib = "*" [feature.doc.tasks] doc = { cmd = "make html", cwd = "doc", description = "Build the HTML documentation." } doc-clean = { cmd = "make clean && make html", cwd = "doc", description = "Clean build artifacts and rebuild the HTML documentation from scratch." } +doc-watch = { cmd = "make livehtml", cwd = "doc", description = "Build and auto-rebuild the documentation on changes." } linkcheck = { cmd = "make linkcheck", cwd = "doc", description = "Check URLs in documentation." }