Skip to content

Commit 77d2b3e

Browse files
committed
Disable JS transformation manually
1 parent 19f56ab commit 77d2b3e

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

integration-testing/examples/mpp-sample/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ kotlin {
5050
}
5151
}
5252

53+
// Workaround for KT-71203. Can be removed after https://github.com/Kotlin/kotlinx-atomicfu/issues/431
54+
atomicfu {
55+
transformJs = false
56+
}
57+
5358
tasks.withType<KotlinCompile<*>>().configureEach {
5459
kotlinOptions {
5560
freeCompilerArgs += listOf("-Xskip-prerelease-check")

integration-testing/examples/mpp-version-catalog/shared/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ kotlin {
3737
}
3838
}
3939

40+
// Workaround for KT-71203. Can be removed after https://github.com/Kotlin/kotlinx-atomicfu/issues/431
41+
atomicfu {
42+
transformJs = false
43+
}
44+
4045
tasks.withType<KotlinCompile<*>>().configureEach {
4146
kotlinOptions {
4247
freeCompilerArgs += listOf("-Xskip-prerelease-check")

integration-testing/examples/multi-module-test/producer/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,8 @@ kotlin {
2121
}
2222
}
2323
}
24+
25+
// Workaround for KT-71203. Can be removed after https://github.com/Kotlin/kotlinx-atomicfu/issues/431
26+
atomicfu {
27+
transformJs = false
28+
}

0 commit comments

Comments
 (0)