From fb86c688949b77c2aa8aa03ed9f9ad1f146c98de Mon Sep 17 00:00:00 2001 From: "Luke W. Johnston" Date: Tue, 15 Jul 2025 10:07:33 +0200 Subject: [PATCH] feat: :sparkles: add recipe to justfile template to (re)build the data package --- template/justfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/template/justfile b/template/justfile index f1842f8..6747e7e 100644 --- a/template/justfile +++ b/template/justfile @@ -2,7 +2,8 @@ just --list --unsorted # Run all build-related recipes in the justfile -run-all: install-deps format-python check-python check-spelling check-commits +run-all: install-deps format-python check-python check-spelling check-commits build + # Install the pre-commit hooks install-precommit: @@ -41,3 +42,7 @@ check-commits: # Check for spelling errors in files check-spelling: uv run typos + +# Re-build the data package +build: + uv run main.py