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
Artem Kobzar
06/22/2023, 9:47 AM
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
Donny
06/28/2023, 3:59 PM
The separate application should depend on the compiled Kotlin/JS Javascript files.