revamp projects, continue editing and add precommit hook for lastmod frontmatter

This commit is contained in:
2026-02-02 23:13:56 -07:00
parent 23a44c1e4f
commit 2fad7c173b
16 changed files with 357 additions and 47 deletions
+6
View File
@@ -5,6 +5,12 @@ NC='\033[0m' # No Color
echo "Running pre-commit checks..."
# Auto-update lastmod in content files (non-blocking)
# Runs before other checks so lint/spell run on updated files
if [ -x "$(dirname "$0")/update-lastmod.sh" ]; then
"$(dirname "$0")/update-lastmod.sh" || echo "⚠️ lastmod update script encountered an issue"
fi
# Track overall success/failure
OVERALL_RESULT=0