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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user