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,6 +1,6 @@
{
"name": "23.09.2024-cpl-v4",
"version": "0.1.0",
"name": "cpl-v4",
"version": "1.6.408",
"private": true,
"scripts": {
"dev": "next dev",
@@ -10,7 +10,8 @@
"start": "next start",
"lint": "next lint",
"test": "jest",
"prepare": "husky install"
"prepare": "husky install",
"bump-version": "node ./scripts/bumpVersion.js"
},
"dependencies": {
"@fontsource/roboto": "^5.1.0",
@@ -78,4 +79,4 @@
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}
}