I am building a jvm/js multiplatform library proje...
# javascript
h
I am building a jvm/js multiplatform library project with the new gradle constructs found on https://kotlinlang.org/docs/tutorials/multiplatform-library.html. After doing
gradle build
, I get nice jar files in the
build/libs
folder, but the js jar doesn't contain kotlin.js, and I cannot find the file elsewhere either. There are no specialities in my
build.gradle
file,
sourceSets --> jsMain / jsTest
only contain dependencies. What did I miss? What mistake could I have made?