From 74c4fc2c2a97ee224ee9535503814b33dd9179ab Mon Sep 17 00:00:00 2001 From: Drew Malzahn Date: Sat, 6 Jun 2026 23:44:13 +0000 Subject: [PATCH] chore: Build pipeline for books/core --- Justfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Justfile b/Justfile index 59b57f8..00fb779 100644 --- a/Justfile +++ b/Justfile @@ -15,5 +15,12 @@ serve: deploy: build scp -r dist/* {{ user }}@{{ host }}:{{ www-root }}/ +core-format: + find books/core -type f -name "*.html" -exec npx prettier --write {} \; + +core-build: + cd books/core && python3 build.py + npx prettier --write books/core/index.html + build: npm run build