CLOVIS
05/03/2024, 7:15 PMwasmJs
? I don't see it mentioned on https://kotlinlang.org/docs/wasm-overview.htmlCLOVIS
05/03/2024, 7:18 PM.gradle/nodejs/node-v22.1.0-linux-x64/bin/node: bad option: --experimental-wasm-gc
ephemient
05/03/2024, 7:21 PMCLOVIS
05/03/2024, 7:21 PMephemient
05/03/2024, 7:22 PMCLOVIS
05/03/2024, 7:23 PMCLOVIS
05/03/2024, 7:25 PM22.0.0-nightly202404032241e8c5b3
seems to workAlexander Girke
05/03/2024, 8:47 PMCLOVIS
05/04/2024, 11:53 AM:wasmJsNodeTest
doesn't inherit from NodeJsExec
CLOVIS
05/04/2024, 11:54 AMrootProject.the<NodeJsRootExtension>().apply {
version = "22.1.0"
}
tasks.withType(NodeJsExec::class) {
nodeArgs.remove("--experimental-wasm-gc")
}
tasks.withType(KotlinJsTest::class) {
nodeJsArgs.remove("--experimental-wasm-gc")
}
but it still failsCLOVIS
05/04/2024, 12:01 PMKotestJsTest.nodeJsArgs
is empty in my case, so I guess it it set somewhere else?