diff --git a/.gitignore b/.gitignore index bd14b5fb..bd72ed8e 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ target build .gradle +.kotlin *~ *.versionsBackup **/karma/node_modules diff --git a/build.gradle.kts b/build.gradle.kts index 4672c1d3..d14275e3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,7 +6,7 @@ import org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl * -PversionTag - works together with "branch-build" profile and overrides "-SNAPSHOT" suffix of the version. */ plugins { - kotlin("multiplatform") version "1.9.22" + kotlin("multiplatform") version "2.0.0" id("maven-publish") id("signing") id("org.jetbrains.kotlinx.binary-compatibility-validator") version "0.13.2" @@ -131,8 +131,7 @@ kotlin { common { group("jsCommon") { withJs() - // TODO: switch to `withWasmJs()` after upgrade to Kotlin 2.0 - withWasm() + withWasmJs() } } }