Piotr Krzemiński
11/22/2022, 2:55 PM:rest:model
and the other one :domain:model
I depend on both in a certain third Kotlin/JS project, and getting an error duplicate target file will be created
from processDceKotlinJs
. One of the solutions seems to be setting different names for JS bundles (like rest-model
and domain-model
). How can I customize the bundle names? I’m looking around Gradle DSL kotlin { js { … } }
but so far didn’t find itturansky
11/22/2022, 3:36 PMmoduleName
to configure bundle nameturansky
11/22/2022, 3:37 PMPiotr Krzemiński
11/22/2022, 7:31 PM