chore: migriere core/navigation Modul auf Module Structure Blueprint, aktualisiere group und füge wasmJsMain Dependency hinzu

This commit is contained in:
2026-04-19 16:48:33 +02:00
parent 0e694341b8
commit cb6db36adb
2 changed files with 40 additions and 1 deletions
+10 -1
View File
@@ -9,7 +9,7 @@ plugins {
alias(libs.plugins.kotlinMultiplatform)
}
group = "at.mocode.clients.shared"
group = "at.mocode.frontend.core"
version = "1.0.0"
kotlin {
@@ -30,6 +30,15 @@ kotlin {
implementation(projects.frontend.core.domain)
implementation(libs.kotlinx.coroutines.core)
}
jvmMain.dependencies {
// Reserviert für Plattform-spezifische Navigation (z.B. Window-Management)
}
wasmJsMain.dependencies {
implementation(libs.kotlin.stdlib.wasm.js)
}
commonTest.dependencies {
implementation(libs.kotlin.test)
}