From 1b157f2d34aca96c4b98f31e7a0d77ea7218a0c9 Mon Sep 17 00:00:00 2001 From: bronsen <kontakt+gitcommit@nrrd.de> Date: Mon, 17 Mar 2025 17:12:56 +0100 Subject: [PATCH] [just] add new target to recalculate/update and then sync dependencies --- justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/justfile b/justfile index 7ae5614..af4b82c 100644 --- a/justfile +++ b/justfile @@ -4,6 +4,8 @@ deps: sync: pip-sync requirements/dev.txt +freshdeps: deps sync + lint: lint-ruff lint-django lint-woodpecker lint-ruff: @@ -20,3 +22,5 @@ serve: test *ARGS: ENV_PATH=.env.test python -m pytest {{ARGS}} + +alias fd := freshdeps