Hello
Do you know why does building a Kotlin/JS project from IDEA add the
lib
folder with all dependencies (
kotlin.js
etc.) but not when building from Gradle
assemble
(I find only the compiled Kotlin as js files) ?
n
napperley
10/07/2018, 7:22 PM
If Gradle is used to manage the build process for a Kotlin JS project then you need to explicitly specify where the dependencies will be located (via a absolute/relative path).
napperley
10/07/2018, 7:26 PM
From what I understand about IntelliJ's management of the build process with Kotlin JS projects it heavily uses conventions (aka very little of the build process is managed explicitly by the user).