Felix
06/21/2023, 8:11 AMdistribution
be applied independently to the two browser
and nodejs
sub-targets?
browser {
@Suppress("OPT_IN_USAGE")
distribution {
directory = File("$projectDir/build/dist/browser")
}
}
nodejs{
@Suppress("OPT_IN_USAGE")
distribution {
directory = File("$projectDir/build/dist/node")
}
}
It seems the second one always overrides the first?
• Somehow related, when generating a library, what is the difference in the generated artefacts between the browser
and nodejs
sub-targets.Vampire
06/21/2023, 9:09 AMbinaries.all {
distribution.apply {
directory = File("...")
}
}