I have a multi module project with one of the modu...
# javascript
d
I have a multi module project with one of the modules being a Kotlin/JS module. This module, when built, creates a folder in the main project called build with the built javascript artifacts. My question: how can I make these artifacts dependencies in other modules? Namely, I have another module that is just a Javascript application (not Kotlin).
a
Do you want to depend from the build artifact on another JavaScript module or the opposite, the separate application should depend on the compiled Kotlin/JS JavaScript files?
d
The separate application should depend on the compiled Kotlin/JS Javascript files.