Skip to content

Commit

Permalink
Update project
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbel committed Nov 18, 2024
1 parent 499cb9a commit 190b3be
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 23 deletions.
8 changes: 1 addition & 7 deletions core/platform-services/foss/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,7 @@ kotlin {
iosArm64()
iosSimulatorArm64()
js {
moduleName = "composeApp"
browser {
commonWebpackConfig {
outputFileName = "composeApp.js"
}
}
binaries.executable()
browser {}
}
wasmJs {
moduleName = "composeApp"
Expand Down
8 changes: 1 addition & 7 deletions core/platform-services/inject-web/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,7 @@ plugins {

kotlin {
js {
moduleName = "composeApp"
browser {
commonWebpackConfig {
outputFileName = "composeApp.js"
}
}
binaries.executable()
browser {}
}
wasmJs {
moduleName = "composeApp"
Expand Down
8 changes: 1 addition & 7 deletions core/platform-services/interactor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,7 @@ kotlin {
iosArm64()
iosSimulatorArm64()
js {
moduleName = "composeApp"
browser {
commonWebpackConfig {
outputFileName = "composeApp.js"
}
}
binaries.executable()
browser {}
}
wasmJs {
moduleName = "composeApp"
Expand Down
2 changes: 1 addition & 1 deletion feature/main-impl-web/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

kotlin {
js() {
js {
browser {}
}
wasmJs()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
package org.michaelbel.movies.di

import org.koin.dsl.module
import org.michaelbel.movies.main.di.mainKoinModule
import org.michaelbel.movies.platform.inject.flavorServiceKtorModule

val appKoinModule = module {}
val appKoinModule = module {
includes(
flavorServiceKtorModule,
mainKoinModule
)
}

0 comments on commit 190b3be

Please sign in to comment.