Skip to content

Commit 630c95d

Browse files
committed
chore: wasmjs fix
1 parent 6c10417 commit 630c95d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

gradle/libs.versions.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ org-name = "suresh.dev"
2020
org-url = "https://suresh.dev"
2121

2222
# Dependency Versions
23-
bc-plugins = "2.9.0"
23+
bc-plugins = "2.9.1"
2424
kotlinx-kover = "0.9.2"
2525
kotlin-dokka = "2.1.0-Beta"
2626
kotlinx-io = "0.8.0"
@@ -93,7 +93,7 @@ jte = "3.2.1"
9393
sshj = "0.40.0"
9494
jsch = "2.27.3"
9595
pty4j = "0.13.11"
96-
oshi = "6.8.3"
96+
oshi = "6.9.0"
9797
junit = "6.0.0-RC3"
9898
koin = "4.1.1"
9999
koin-annotations = "2.2.0-RC1"
@@ -132,7 +132,7 @@ koja = "0.4.3"
132132
json-sugar = "0.7.2"
133133
json-schema-validator = "0.5.2"
134134
pwall-json-schema = "0.57"
135-
schema-kenerator = "2.3.0"
135+
schema-kenerator = "2.4.0"
136136
uri-kmp = "0.0.20"
137137
trie-kmp = "0.5.0"
138138
urlencoder = "1.6.0"
@@ -191,7 +191,7 @@ langchain4j = "1.5.0"
191191
langchain4j-jlama = "1.5.0-beta11"
192192
langchain4j-kotlin = "0.3.0"
193193
jlama = "0.8.4"
194-
mcp-kotlin = "0.7.0"
194+
mcp-kotlin = "0.7.2"
195195
koog = "0.4.2"
196196
mcp4k = "0.4.4"
197197
dflib = "2.0.0-M4"
@@ -215,7 +215,7 @@ jetbrains-compose-icons = "1.7.3"
215215
kobweb = "0.23.3"
216216
detekt = "1.23.8"
217217
detekt-compose-rules = "0.4.27"
218-
compose-hotreload = "1.0.0-beta07"
218+
compose-hotreload = "1.0.0-beta08"
219219
compose-icons = "1.1.1"
220220
compose-routing = "0.4.0"
221221
kottie = "2.1.0"
@@ -413,7 +413,7 @@ sshj = { module = "com.hierynomus:sshj"
413413
jsch = { module = "com.github.mwiede:jsch" , version.ref = "jsch"}
414414
ayza = { module = "io.github.hakky54:ayza" , version.ref = "ayza"}
415415
ayza-for-pem = { module = "io.github.hakky54:ayza-for-pem" , version.ref = "ayza"}
416-
oshi-core = { module = "com.github.oshi:oshi-core-java11" , version.ref = "oshi"}
416+
oshi-core = { module = "com.github.oshi:oshi-core-java25" , version.ref = "oshi"}
417417
fusionauth-http = { module = "io.fusionauth:java-http" , version.ref = "oshi"}
418418
# airlift-aircompressor = { module = "io.airlift:aircompressor" , version.ref = "airlift-aircompressor"}
419419
# airlift-security = { module = "io.airlift:security" , version.ref = "airlift-security"}

plugins/project/src/main/kotlin/common/ProjectExtns.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ fun TestLoggingContainer.configureLogEvents() {
553553
fun KotlinJsCompilerOptions.configureKotlinJs() {
554554
freeCompilerArgs.addAll("-Xir-per-file", "-Xes-long-as-bigint")
555555
target = "es2015"
556-
optIn.add("kotlin.js.ExperimentalJsExport")
556+
optIn.addAll("kotlin.js.ExperimentalJsExport", "kotlin.js.ExperimentalWasmJsInterop")
557557
// sourceMap = true
558558
// sourceMapEmbedSources = "always"
559559
}

0 commit comments

Comments
 (0)