From 4cda783fedf28d1d5626c6709720a59d438b7455 Mon Sep 17 00:00:00 2001 From: Asai Neko Date: Tue, 20 Jan 2026 15:38:40 +0800 Subject: [PATCH] Fix devenv and justfile client running logic Signed-off-by: Asai Neko --- devenv.nix | 2 +- justfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/devenv.nix b/devenv.nix index 2b8ee3b..24c5ad1 100644 --- a/devenv.nix +++ b/devenv.nix @@ -31,7 +31,7 @@ processes = { vite = { - exec = "bun run dev"; + exec = "pnpm run dev"; cwd = "./client"; }; backend.exec = "just watch-back"; diff --git a/justfile b/justfile index 73e0141..f026b70 100644 --- a/justfile +++ b/justfile @@ -36,7 +36,7 @@ test-back: watch-back: clean watchexec -r -e go,yaml,tpl -i '.devenv/**' -i '.direnv/**' -i 'client/**' -i 'vendor/**' 'go build -o {{ join(output_dir, "nixcn-cms") }} . && cd {{ output_dir }} && CONFIG_PATH={{ output_dir }} {{ exec_path }}' -dev: +dev: clean install devenv up --verbose dev-back: