fix: refactor Makefile to fix checkmake maxbodylength violations (#95)

This commit is contained in:
Copilot
2025-11-11 22:32:21 +02:00
committed by GitHub
parent 3a122c3d0c
commit bec064d0b7
7 changed files with 104 additions and 82 deletions

9
scripts/deps-check.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
set -eu
echo "Checking for available dependency updates..."
echo ""
echo "Direct dependencies:"
go list -u -m all | grep -v "indirect" | column -t
echo ""
echo "Note: Run 'make deps-update' to update all dependencies"