-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #763 from arkivanov/replace-js-plugin
Replace kotlin-js plugin with kotlin-multiplatform
- Loading branch information
Showing
4 changed files
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') | ||
} | ||
} | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.