Skip to content

Commit 9ff79ae

Browse files
committed
feat: remove legacy JS backend
1 parent f43335e commit 9ff79ae

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

benchmark/build.gradle.kts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ allOpen { annotation("org.openjdk.jmh.annotations.State") }
1616
benchmark {
1717
targets {
1818
register("js")
19-
register("jsIR")
2019
register("jvm")
2120
if (providers.gradleProperty("enableNativeTargets").isPresent) {
2221
register("native")
@@ -26,8 +25,7 @@ benchmark {
2625

2726
kotlin {
2827
jvm()
29-
js { nodejs() }
30-
js("jsIR", IR) { nodejs() }
28+
js(IR) { nodejs() }
3129
if (providers.gradleProperty("enableNativeTargets").isPresent) {
3230
if (HostManager.hostIsLinux) linuxX64("native") { configureTarget() }
3331
if (HostManager.hostIsMingw) mingwX64("native") { configureTarget() }

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ spotless {
6262
kotlin {
6363
explicitApi()
6464
jvm()
65-
js(BOTH) {
65+
js(IR) {
6666
nodejs {}
6767
browser {}
6868
compilations.all {

sample/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fun KotlinNativeTargetWithHostTests.configureTarget() = binaries {
1111
}
1212

1313
kotlin {
14-
js(LEGACY) {
14+
js(IR) {
1515
browser()
1616
nodejs()
1717
binaries.executable()

0 commit comments

Comments
 (0)