add wasm support

This commit is contained in:
InsanusMokrassar 2023-04-13 10:52:05 +06:00
parent dc50977c9a
commit 604ef1b347
2 changed files with 13 additions and 1 deletions

View File

@ -50,6 +50,11 @@ kotlin {
linuxArm64()
linuxArm32Hfp()
linuxX64()
wasm {
browser()
nodejs()
d8()
}
wasm32()
mingwX64()
mingwX86()
@ -60,6 +65,13 @@ kotlin {
implementation libs.kotlin
}
}
commonTest {
dependencies {
implementation libs.kotlin.test.common
implementation libs.kotlin.test.annotations.common
implementation libs.kotlin.test.junit
}
}
}
}

View File

@ -5,7 +5,7 @@ kotlin-gradle-plugin = "7.3.1"
dokka = "1.8.10"
dexcount = "3.1.0"
dexcount = "4.0.0"
junit_version = "4.12"
test_ext_junit_version = "1.1.3"
espresso_core = "3.4.0"