<https://twitter.com/sdeleuze/status/1141705982512...
# javascript
t
what's essentially new with the gradle plugins? is there any documentation about it? (i don't use the kotlin dsl, so it doesn't look familiar to me anyway...)
s
New multiplatform plugin: https://kotlinlang.org/docs/reference/building-mpp-with-gradle.html#setting-up-a-multiplatform-project The main differences with old: - setting up all target platforms in a single Gradle subproject - it is possible to share a part of code between only some of the targeted platforms rather than all of them - dependency management gets simpler: a single line in the build script is enough to use a multiplatform library across all of the target platforms New Kotlin/JS plugin: it is experimental for now, and no docs yet. Some info and examples here: https://blog.jetbrains.com/kotlin/2019/06/kotlin-1-3-40-released/, see
Kotlin/JS
section.
t
ahhh i see, thank you! ❤️
n
Does this mean that the double quoted functions ("implementation", "compile", "testCompile" etc) no longer need to be used with the Kotlin JS plugin?
s
👌
Also Kotlin JS plugin no longer requires Java plugin 🙈
👏 2
s
I have a user that report an issue that I can't reproduce, any idea https://github.com/sdeleuze/spring-kotlin-fullstack/issues/5#issue-459109572 ?
s
He is running it on windows. It is not supported in 1.3.40. Fixed in master, will be published with first eap of 1.3.50 https://youtrack.jetbrains.com/issue/KT-31985
s
Ok thanks for the info