chore: enable mkdocs livereload for poe docs task (restore hot reload) (#838)
What changed, and why it matters
This commit changes a local documentation development command to re-enable automatic browser refresh when documentation files are edited. It is a routine developer-experience tweak with no security relevance.
No security action needed; treat as a normal developer-experience change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch adds the --livereload flag to the docs poe task in pyproject.toml, restoring MkDocs’ default live-reload behavior for local mkdocs serve. This only affects local documentation builds and has no bearing on firmware, wallet operations, or production code.
Changed components
pyproject.tomlInspect captured patch +1 / −1
diff --git a/pyproject.toml b/pyproject.toml
index ca2e253..3bdd9eb 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -111,7 +111,7 @@ pre-commit = ["format", "lint", "i18n validate", "vulture", "test-simple"]
pre-release = ["format", "lint", "i18n validate", "i18n-build", "update-glyphs", "vulture", "test-simple"]
# run docs locally
-docs = "poetry run mkdocs serve"
+docs = "poetry run mkdocs serve --livereload"
# translations tasks
i18n = "python i18n/i18n.py"
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.