From 5de9a88a3e9104ab231e15d7e797a8ab29e4b904 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sun, 26 May 2024 12:17:46 +0200 Subject: build: add task to update dependencies --- justfile | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'justfile') diff --git a/justfile b/justfile index f5c6682..2e99e03 100644 --- a/justfile +++ b/justfile @@ -4,6 +4,16 @@ default: prepare: nix build .#css -o frontend/static/base.css +update-go-dependencies: + go get -u all + go mod tidy + gomod2nix + +update-nix-dependencies: + nix flake update + +update-dependencies: update-go-dependencies update-nix-dependencies + checkformat: gofmt -d . goimports -d . -- cgit 1.4.1