From f4dff5ecffe44f06393a8edd16708c866347654c Mon Sep 17 00:00:00 2001 From: Garrick Aden-Buie Date: Thu, 22 Feb 2024 17:26:03 -0500 Subject: [PATCH 1/2] chore(make): Add `make docs` and `make docs-preview` --- Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dd60d32c1..71421d899 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: help clean% check% format% lint test pyright playwright% install% testrail% coverage release +.PHONY: help clean% check% format% docs lint test pyright playwright% install% testrail% coverage release .DEFAULT_GOAL := help define BROWSER_PYSCRIPT @@ -92,6 +92,14 @@ format-isort: @echo "-------- Sorting imports with isort --------" isort . +docs: ## docs: build docs with quartodoc + @echo "-------- Building docs with quartodoc --------" + @cd docs && make quartodoc + +docs-preview: ## docs: preview docs in browser + @echo "-------- Previewing docs in browser --------" + @cd docs && make serve + # Default `SUB_FILE` to empty SUB_FILE:= From 6256b8f5bb77c9e35850b66543c639a07dff7769 Mon Sep 17 00:00:00 2001 From: Garrick Aden-Buie Date: Fri, 23 Feb 2024 10:01:25 -0500 Subject: [PATCH 2/2] chore(make): all docs targets are phone Co-authored-by: Barret Schloerke --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 71421d899..41035d377 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: help clean% check% format% docs lint test pyright playwright% install% testrail% coverage release +.PHONY: help clean% check% format% docs% lint test pyright playwright% install% testrail% coverage release .DEFAULT_GOAL := help define BROWSER_PYSCRIPT