EAP 2.1.20

This commit is contained in:
Alexander Nozik 2024-12-21 14:02:54 +03:00
parent 7064546f83
commit 8f55d89daf
4 changed files with 20 additions and 8 deletions

View File

@ -2,13 +2,15 @@
# Copyright 2018-2021 KMath contributors. # Copyright 2018-2021 KMath contributors.
# Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. # Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
# #
kotlin.code.style=official
kotlin.mpp.stability.nowarn=true
kotlin.native.ignoreDisabledTargets=true
org.gradle.configureondemand=true org.gradle.configureondemand=true
org.gradle.jvmargs=-Xmx4096m org.gradle.jvmargs=-Xmx4096m
org.gradle.parallel=true org.gradle.parallel=true
org.gradle.workers.max=4 org.gradle.workers.max=4
toolsVersion=0.15.6-kotlin-2.1.0-Beta1 kotlin.code.style=official
kotlin.mpp.stability.nowarn=true
kotlin.native.ignoreDisabledTargets=true
org.jetbrains.dokka.experimental.gradle.pluginMode=V2EnabledWithHelpers org.jetbrains.dokka.experimental.gradle.pluginMode=V2EnabledWithHelpers
kotlin.native.enableKlibsCrossCompilation=true
toolsVersion=0.16.0-kotlin-2.1.20-Beta1

View File

@ -7,14 +7,18 @@ kscience {
js{ js{
nodejs { nodejs {
testTask { testTask {
useMocha().timeout = "0" useMocha {
timeout = "0"
}
} }
} }
browser { browser {
useCommonJs() useCommonJs()
testTask { testTask {
useMocha().timeout = "0" useMocha {
timeout = "0"
}
} }
} }
} }

View File

@ -11,6 +11,10 @@ kscience {
dependencies { dependencies {
api(projects.kmathCore) api(projects.kmathCore)
} }
wasmJsMain{
api(spclibs.kotlinx.browser)
}
} }
readme { readme {

View File

@ -7,7 +7,9 @@ kscience {
js { js {
browser { browser {
testTask { testTask {
useMocha().timeout = "0" useMocha {
timeout = "0"
}
} }
} }
} }