From 53eb717bc1660f7caa82fe73524c8c0e89b87492 Mon Sep 17 00:00:00 2001 From: ishaaq Date: Thu, 11 Apr 2024 15:51:19 +0530 Subject: [PATCH] Modified JustFile --- justfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/justfile b/justfile index 630cb0b..943ed48 100644 --- a/justfile +++ b/justfile @@ -20,8 +20,8 @@ clippy: # run clippy fix fix: - cargo clippy -p frontend --fix --target wasm32-unknown-unknown - cargo clippy --workspace --fix --exclude frontend + cargo clippy -p frontend --fix --target wasm32-unknown-unknown --allow-dirty + cargo clippy --workspace --fix --exclude frontend --allow-dirty # build docs. use --open to open in browser doc *ARGS: @@ -33,7 +33,7 @@ serve-frontend *ARGS: # run API server serve-api *ARGS: - watchexec -r -i "frontend/**" -i "target/**" --exts rs,sql,toml cargo run -p uchat_server {{ ARGS }} + cargo run -p uchat_server {{ ARGS }} # set up project dependencies init: