From 9897df968e5d904cfcddfb6a08faec99836a14b2 Mon Sep 17 00:00:00 2001 From: "@RandyMcMillan" Date: Fri, 6 Dec 2024 21:38:01 -0500 Subject: [PATCH] book/justfile:add recipe comments --- book/justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/book/justfile b/book/justfile index 5f943f8ad..670ed1772 100644 --- a/book/justfile +++ b/book/justfile @@ -14,12 +14,15 @@ init: @mdbook-snippets --version || \ cargo install --force --path ./snippets-processor +# build mdbook build: init mdbook build +# serve mdbook (localhost:3000) serve: init mdbook serve +# cd snippets && just test test: cd snippets && just test