Skip to content

Commit

Permalink
EAP 2.1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
altavir committed Dec 21, 2024
1 parent 7064546 commit 8f55d89
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
12 changes: 7 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@
# 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.
#
kotlin.code.style=official
kotlin.mpp.stability.nowarn=true
kotlin.native.ignoreDisabledTargets=true
org.gradle.configureondemand=true
org.gradle.jvmargs=-Xmx4096m
org.gradle.parallel=true
org.gradle.workers.max=4

toolsVersion=0.15.6-kotlin-2.1.0-Beta1
org.jetbrains.dokka.experimental.gradle.pluginMode=V2EnabledWithHelpers
kotlin.code.style=official
kotlin.mpp.stability.nowarn=true
kotlin.native.ignoreDisabledTargets=true
org.jetbrains.dokka.experimental.gradle.pluginMode=V2EnabledWithHelpers
kotlin.native.enableKlibsCrossCompilation=true

toolsVersion=0.16.0-kotlin-2.1.20-Beta1
8 changes: 6 additions & 2 deletions kmath-ast/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,18 @@ kscience {
js{
nodejs {
testTask {
useMocha().timeout = "0"
useMocha {
timeout = "0"
}
}
}

browser {
useCommonJs()
testTask {
useMocha().timeout = "0"
useMocha {
timeout = "0"
}
}
}
}
Expand Down
4 changes: 4 additions & 0 deletions kmath-memory/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ kscience {
dependencies {
api(projects.kmathCore)
}

wasmJsMain{
api(spclibs.kotlinx.browser)
}
}

readme {
Expand Down
4 changes: 3 additions & 1 deletion kmath-tensors/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ kscience {
js {
browser {
testTask {
useMocha().timeout = "0"
useMocha {
timeout = "0"
}
}
}
}
Expand Down

0 comments on commit 8f55d89

Please sign in to comment.