docs(standards): zentrale Anleitung zur automatisierten Versionierung hinzugefügt

- beschreibt das Versionskonzept für package.json, package-lock.json und .env.*
- erklärt die Verwendung von bumpVersion.js und Husky-Hooks
- hilft neuen und bestehenden Entwicklern, konsistent zu arbeiten
- gilt als Standardrichtlinie für zukünftige Projekte
This commit is contained in:
ISA
2025-06-17 15:31:21 +02:00
parent 3be337f53d
commit 534b22f325
11 changed files with 142 additions and 78 deletions

View File

@@ -1,4 +1,12 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
node incrementVersion.ts
echo "🔄 Version wird automatisch erhöht (bumpVersion.ts)..."
# Version automatisch erhöhen
node /scripts/bumpVersion.ts
# Automatisch relevante Dateien zum Commit hinzufügen
git add package.json package-lock.json .env.development .env.production
# Fortsetzen mit dem Commit