You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to add the kotlinx.html dependency for JS compilation. It seems to work ok with legacy compilation, but IR compilation is not resolving the import.
Steps:
Add maven("https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven") at L62 build.gradle.kts
Add kotlinJsDependency("org.jetbrains.kotlinx:kotlinx-html-js:0.7.5") at L89 build.gradle.kts
This caused a duplicates error so I added duplicatesStrategy = DuplicatesStrategy.INCLUDE at L42 build.gradle.kts
I then built with ./gradlew build -x test and ran with ./gradlew bootRun
I tried to add the kotlinx.html dependency for JS compilation. It seems to work ok with legacy compilation, but IR compilation is not resolving the import.
Steps:
maven("https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven")
at L62 build.gradle.ktskotlinJsDependency("org.jetbrains.kotlinx:kotlinx-html-js:0.7.5")
at L89 build.gradle.ktsduplicatesStrategy = DuplicatesStrategy.INCLUDE
at L42 build.gradle.kts./gradlew build -x test
and ran with./gradlew bootRun
Non IR curl works
But the IR one doesn't
The response was
I tried with both 1.7.0-RC2 and 1.6.21
I was also wondering is it possible to configure the JS compiler to bundle all necessary dependencies into the jsCode output?
The text was updated successfully, but these errors were encountered: