From 22544b8c2ff770b2cad8f74794f3197a07b7b354 Mon Sep 17 00:00:00 2001 From: Lennart <18233294+lennart-k@users.noreply.github.com> Date: Fri, 27 Jun 2025 13:57:44 +0200 Subject: [PATCH] Justfile: Add commands to build frontend components --- Justfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Justfile b/Justfile index 75bc7f3..7cb3e75 100644 --- a/Justfile +++ b/Justfile @@ -1,2 +1,9 @@ licenses: cargo about generate about.hbs > crates/frontend/public/assets/licenses.html + +frontend-dev: + cd crates/frontend/js-components && deno task dev + +frontend-build: + cd crates/frontend/js-components && deno task build +