File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ allOpen { annotation("org.openjdk.jmh.annotations.State") }
16
16
benchmark {
17
17
targets {
18
18
register(" js" )
19
- register(" jsIR" )
20
19
register(" jvm" )
21
20
if (providers.gradleProperty(" enableNativeTargets" ).isPresent) {
22
21
register(" native" )
@@ -26,8 +25,7 @@ benchmark {
26
25
27
26
kotlin {
28
27
jvm()
29
- js { nodejs() }
30
- js(" jsIR" , IR ) { nodejs() }
28
+ js(IR ) { nodejs() }
31
29
if (providers.gradleProperty(" enableNativeTargets" ).isPresent) {
32
30
if (HostManager .hostIsLinux) linuxX64(" native" ) { configureTarget() }
33
31
if (HostManager .hostIsMingw) mingwX64(" native" ) { configureTarget() }
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ spotless {
62
62
kotlin {
63
63
explicitApi()
64
64
jvm()
65
- js(BOTH ) {
65
+ js(IR ) {
66
66
nodejs {}
67
67
browser {}
68
68
compilations.all {
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ fun KotlinNativeTargetWithHostTests.configureTarget() = binaries {
11
11
}
12
12
13
13
kotlin {
14
- js(LEGACY ) {
14
+ js(IR ) {
15
15
browser()
16
16
nodejs()
17
17
binaries.executable()
You can’t perform that action at this time.
0 commit comments