chore: migriere device-initialization Modul auf Module Structure Blueprint, aktualisiere group, füge wasmJsMain Dependency hinzu, dokumentiere Änderungen
This commit is contained in:
@@ -0,0 +1,26 @@
|
|||||||
|
# Journal-Eintrag: Migration Blueprint (Device Initialization Feature)
|
||||||
|
|
||||||
|
**Datum:** 19. April 2026
|
||||||
|
**Status:** ✅ COMPLETED
|
||||||
|
**Modul:** `frontend:features:device-initialization`
|
||||||
|
**Typ:** Klasse B (`UI_COMPONENT`)
|
||||||
|
|
||||||
|
## 🎯 Ziel der Migration
|
||||||
|
Anpassung des Moduls an den neuen **Module Architecture Blueprint**. Da dieses Modul als Referenz für andere Feature-Module dient, wurde es auf den neuesten Stand gebracht (Group-ID Sync und KMP-Infrastruktur).
|
||||||
|
|
||||||
|
## 🛠️ Durchgeführte Änderungen
|
||||||
|
|
||||||
|
### 1. Gradle (build.gradle.kts)
|
||||||
|
- **Group-ID:** Geändert von `at.mocode.clients` zu `at.mocode.frontend.features`, um die Konsistenz mit dem neuen Namensschema zu gewährleisten.
|
||||||
|
- **KMP Support:** Das `wasmJsMain` Source-Set wurde explizit um die `kotlin.stdlib.wasm.js` Dependency ergänzt.
|
||||||
|
|
||||||
|
### 2. Struktur
|
||||||
|
- Die physische Struktur entsprach bereits dem Standard (`commonMain`, `jvmMain`, `wasmJsMain`).
|
||||||
|
- Die Paketstruktur unter `at.mocode.frontend.features.device.initialization` war bereits korrekt und blueprint-konform.
|
||||||
|
|
||||||
|
## ✅ Verifizierung
|
||||||
|
- `./gradlew :frontend:features:device-initialization:assemble` erfolgreich abgeschlossen.
|
||||||
|
- Die Konsistenzprüfung gegen das `auth`-Referenzmodul und den Blueprint wurde durchgeführt.
|
||||||
|
|
||||||
|
---
|
||||||
|
*Dokumentiert durch den Curator.*
|
||||||
@@ -12,7 +12,7 @@ plugins {
|
|||||||
alias(libs.plugins.kotlinSerialization)
|
alias(libs.plugins.kotlinSerialization)
|
||||||
}
|
}
|
||||||
|
|
||||||
group = "at.mocode.clients"
|
group = "at.mocode.frontend.features"
|
||||||
version = "1.0.0"
|
version = "1.0.0"
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
@@ -51,5 +51,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