chore: füge Core-Wizard-Modul hinzu und integriere in Veranstaltung-Feature
Signed-off-by: StefanMoCoAt <stefan.mo.co@gmail.com>
This commit is contained in:
Generated
+1
@@ -79,6 +79,7 @@
|
|||||||
<option value="$PROJECT_DIR$/frontend/core/navigation" />
|
<option value="$PROJECT_DIR$/frontend/core/navigation" />
|
||||||
<option value="$PROJECT_DIR$/frontend/core/network" />
|
<option value="$PROJECT_DIR$/frontend/core/network" />
|
||||||
<option value="$PROJECT_DIR$/frontend/core/sync" />
|
<option value="$PROJECT_DIR$/frontend/core/sync" />
|
||||||
|
<option value="$PROJECT_DIR$/frontend/core/wizard" />
|
||||||
<option value="$PROJECT_DIR$/frontend/features" />
|
<option value="$PROJECT_DIR$/frontend/features" />
|
||||||
<option value="$PROJECT_DIR$/frontend/features/billing-feature" />
|
<option value="$PROJECT_DIR$/frontend/features/billing-feature" />
|
||||||
<option value="$PROJECT_DIR$/frontend/features/device-initialization" />
|
<option value="$PROJECT_DIR$/frontend/features/device-initialization" />
|
||||||
|
|||||||
@@ -0,0 +1,46 @@
|
|||||||
|
@file:OptIn(ExperimentalWasmDsl::class)
|
||||||
|
|
||||||
|
import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
alias(libs.plugins.kotlinMultiplatform)
|
||||||
|
alias(libs.plugins.kotlinSerialization)
|
||||||
|
}
|
||||||
|
|
||||||
|
group = "at.mocode.frontend.core"
|
||||||
|
version = "1.0.0"
|
||||||
|
|
||||||
|
kotlin {
|
||||||
|
jvm()
|
||||||
|
|
||||||
|
wasmJs {
|
||||||
|
binaries.library()
|
||||||
|
browser {
|
||||||
|
testTask {
|
||||||
|
enabled = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
sourceSets {
|
||||||
|
val commonMain by getting {
|
||||||
|
dependencies {
|
||||||
|
implementation(projects.frontend.core.navigation)
|
||||||
|
implementation(projects.frontend.core.domain)
|
||||||
|
implementation(libs.kotlinx.coroutines.core)
|
||||||
|
implementation(libs.kotlinx.serialization.json)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
val commonTest by getting {
|
||||||
|
dependencies {
|
||||||
|
implementation(libs.kotlin.test)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
val jvmMain by getting
|
||||||
|
val wasmJsMain by getting {
|
||||||
|
dependencies {
|
||||||
|
implementation(libs.kotlin.stdlib.wasm.js)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -30,6 +30,7 @@ kotlin {
|
|||||||
implementation(projects.frontend.core.designSystem)
|
implementation(projects.frontend.core.designSystem)
|
||||||
implementation(projects.frontend.core.network)
|
implementation(projects.frontend.core.network)
|
||||||
implementation(projects.frontend.core.domain)
|
implementation(projects.frontend.core.domain)
|
||||||
|
implementation(project(":frontend:core:wizard"))
|
||||||
implementation(projects.core.coreDomain)
|
implementation(projects.core.coreDomain)
|
||||||
implementation(projects.frontend.core.auth)
|
implementation(projects.frontend.core.auth)
|
||||||
implementation(projects.frontend.features.vereinFeature)
|
implementation(projects.frontend.features.vereinFeature)
|
||||||
|
|||||||
@@ -142,6 +142,7 @@ include(":frontend:core:navigation")
|
|||||||
include(":frontend:core:network")
|
include(":frontend:core:network")
|
||||||
include(":frontend:core:local-db")
|
include(":frontend:core:local-db")
|
||||||
include(":frontend:core:sync")
|
include(":frontend:core:sync")
|
||||||
|
include(":frontend:core:wizard")
|
||||||
|
|
||||||
// --- FEATURES ---
|
// --- FEATURES ---
|
||||||
include(":frontend:features:ping-feature")
|
include(":frontend:features:ping-feature")
|
||||||
|
|||||||
Reference in New Issue
Block a user