From 63f8439886754fab17a73a53f1a1981627463d73 Mon Sep 17 00:00:00 2001 From: Asai Neko Date: Tue, 20 Jan 2026 15:50:20 +0800 Subject: [PATCH] Remove justfile default and backend settings Signed-off-by: Asai Neko --- justfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/justfile b/justfile index 44021c0..4b9449d 100644 --- a/justfile +++ b/justfile @@ -7,10 +7,6 @@ exec_path := join(output_dir, project_name) go_cmd := `realpath $(which go)` pnpm_cmd := `realpath $(which pnpm)` -default: install clean build-back build-client run-back - -backend: clean build-back run-back - install: cd {{ client_dir }} && {{ pnpm_cmd }} install