chore: migriere veranstalter-feature Modul auf Module Structure Blueprint, aktualisiere group, füge wasmJsMain Dependency hinzu, dokumentiere Änderungen
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
# Journal-Eintrag: VeranstalterFeature Blueprint-Migration
|
||||
|
||||
**Datum:** 2026-04-19
|
||||
**Agent:** 🏗️ [Lead Architect] | 🎨 [Frontend Expert] | 🧹 [Curator]
|
||||
|
||||
## 🎯 Ziel
|
||||
Migration des Moduls `frontend/features/veranstalter-feature` auf den neuen **Module Structure Blueprint** (Klasse B: `UI_COMPONENT`).
|
||||
|
||||
## 🛠️ Änderungen
|
||||
|
||||
### 1. Gradle Konfiguration (`build.gradle.kts`)
|
||||
- **Group-ID Sync:** Die Group-ID wurde von `at.mocode.clients` auf `at.mocode.frontend.features` geändert, um konsistent mit dem `auth`-Referenzmodul und dem neuen Namensraum-Standard zu sein.
|
||||
- **WasmJS Support:** Das `wasmJsMain` Source-Set wurde explizit konfiguriert und mit der `kotlin.stdlib.wasm.js` Dependency ausgestattet.
|
||||
|
||||
### 2. Strukturelle Anpassungen
|
||||
- **Consistency Rule:** Erstellung des physischen Verzeichnisbaums für `src/wasmJsMain/kotlin/at/mocode/frontend/features/veranstalter/`, um die KMP-Topologie zu vervollständigen (Plug-and-Play ready).
|
||||
|
||||
## ✅ Verifikation
|
||||
- `./gradlew :frontend:features:veranstalter-feature:assemble` erfolgreich für JVM und WasmJS ausgeführt.
|
||||
- Paketstruktur in `commonMain` und `jvmMain` wurde als bereits blueprint-konform verifiziert.
|
||||
|
||||
## 🔗 Status
|
||||
- Modul-Typ: **Klasse B** (`UI_COMPONENT`)
|
||||
- Status: **Vollständig migriert**
|
||||
@@ -11,7 +11,7 @@ plugins {
|
||||
alias(libs.plugins.composeMultiplatform)
|
||||
alias(libs.plugins.composeCompiler)
|
||||
}
|
||||
group = "at.mocode.clients"
|
||||
group = "at.mocode.frontend.features"
|
||||
version = "1.0.0"
|
||||
kotlin {
|
||||
jvm()
|
||||
@@ -54,5 +54,9 @@ kotlin {
|
||||
jvmMain.dependencies {
|
||||
implementation(compose.uiTooling)
|
||||
}
|
||||
|
||||
wasmJsMain.dependencies {
|
||||
implementation(libs.kotlin.stdlib.wasm.js)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user