Skip to content

Commit

Permalink
Use Kotlin/JS IR now that it is stable
Browse files Browse the repository at this point in the history
  • Loading branch information
steve-the-edwards committed Oct 23, 2023
1 parent 0d49346 commit 32b7833
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion workflow-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ kotlin {
jvm { withJava() }
}
if (targets == "kmp" || targets == "js") {
js { browser() }
js(IR) { browser() }
}
}

Expand Down
2 changes: 1 addition & 1 deletion workflow-runtime/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ kotlin {
jvm {}
}
if (targets == "kmp" || targets == "js") {
js { browser() }
js(IR) { browser() }
}
}

Expand Down

0 comments on commit 32b7833

Please sign in to comment.