Skip to content

Commit

Permalink
Merge pull request #763 from arkivanov/replace-js-plugin
Browse files Browse the repository at this point in the history
Replace kotlin-js plugin with kotlin-multiplatform
  • Loading branch information
CherryPerry authored Nov 2, 2023
2 parents 630aade + 3d7e5cb commit a0ea723
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions sample-js-browser-app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
/*
* Use the following Gradle tasks to run your application:
* :browserProductionRun - release mode
* :browserDevelopmentRun - debug mode
* :jsBrowserProductionRun - release mode
* :jsBrowserDevelopmentRun - debug mode
*/

plugins {
id 'org.jetbrains.kotlin.js'
id 'kotlin-multiplatform'
}

kotlin {
js(IR) {
browser()
binaries.executable()
}
}

dependencies {
implementation project(':reaktive')
implementation project(':sample-mpp-module')
sourceSets {
jsMain {
dependencies {
implementation project(':reaktive')
implementation project(':sample-mpp-module')
}
}
}
}

0 comments on commit a0ea723

Please sign in to comment.