Hello Do you know why does building a Kotlin/JS pr...
# javascript
t
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
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).
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).