File tree Expand file tree Collapse file tree 4 files changed +4
-6
lines changed Expand file tree Collapse file tree 4 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ allOpen { annotation("org.openjdk.jmh.annotations.State") }
1616benchmark {
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
2726kotlin {
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() }
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ spotless {
6262kotlin {
6363 explicitApi()
6464 jvm()
65- js(BOTH ) {
65+ js(IR ) {
6666 nodejs {}
6767 browser {}
6868 compilations.all {
Original file line number Diff line number Diff line change 11[versions ]
22benchmark = " 0.4.7"
3- kotlin = " 1.7.22 "
3+ kotlin = " 1.8.0 "
44dokka = " 1.7.20"
55
66[libraries ]
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ fun KotlinNativeTargetWithHostTests.configureTarget() = binaries {
1111}
1212
1313kotlin {
14- js(LEGACY ) {
14+ js(IR ) {
1515 browser()
1616 nodejs()
1717 binaries.executable()
You can’t perform that action at this time.
0 commit comments