chore: migriere pferde-feature Modul auf Module Structure Blueprint, aktualisiere group, füge wasmJsMain Dependency hinzu, dokumentiere Änderungen
This commit is contained in:
@@ -0,0 +1,25 @@
|
|||||||
|
# Journal-Eintrag: PferdeFeature Blueprint-Migration
|
||||||
|
|
||||||
|
**Datum:** 19. April 2026
|
||||||
|
**Status:** Abgeschlossen
|
||||||
|
**Agent:** 🏗️ [Lead Architect]
|
||||||
|
|
||||||
|
## 🎯 Ziel
|
||||||
|
Migration des Moduls `frontend/features/pferde-feature` auf den neuen **Module Architecture Blueprint** (Klasse B: `UI_COMPONENT`).
|
||||||
|
|
||||||
|
## 🛠️ Änderungen
|
||||||
|
|
||||||
|
### 1. Gradle-Konfiguration (`build.gradle.kts`)
|
||||||
|
- **Group-ID:** Geändert von `at.mocode.clients` zu `at.mocode.frontend.features`.
|
||||||
|
- **KMP-Support:** `wasmJsMain` Source-Set hinzugefügt und mit `kotlin.stdlib.wasm.js` verknüpft.
|
||||||
|
|
||||||
|
### 2. Struktur-Anpassung
|
||||||
|
- **Verzeichnisse:** Physisches Verzeichnis `src/wasmJsMain/kotlin/at/mocode/frontend/features/pferde/` erstellt, um die "Consistency Rule" zu erfüllen.
|
||||||
|
- **Namensraum:** Die Paketstruktur war bereits konsistent mit `at.mocode.frontend.features.pferde`.
|
||||||
|
|
||||||
|
## ✅ Verifizierung
|
||||||
|
- `./gradlew :frontend:features:pferde-feature:assemble` erfolgreich ausgeführt (JVM & WasmJS).
|
||||||
|
- Strukturprüfung bestätigt Einhaltung der Klasse B Anforderungen.
|
||||||
|
|
||||||
|
---
|
||||||
|
*Dieser Eintrag wurde automatisch durch den Lead Architect erstellt.*
|
||||||
@@ -11,7 +11,7 @@ plugins {
|
|||||||
alias(libs.plugins.composeCompiler)
|
alias(libs.plugins.composeCompiler)
|
||||||
}
|
}
|
||||||
|
|
||||||
group = "at.mocode.clients"
|
group = "at.mocode.frontend.features"
|
||||||
version = "1.0.0"
|
version = "1.0.0"
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
@@ -55,5 +55,9 @@ kotlin {
|
|||||||
jvmMain.dependencies {
|
jvmMain.dependencies {
|
||||||
implementation(compose.uiTooling)
|
implementation(compose.uiTooling)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
wasmJsMain.dependencies {
|
||||||
|
implementation(libs.kotlin.stdlib.wasm.js)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user