Justin Shapiro
03/02/2020, 7:24 PMsrc
├── androidMain
├── androidTest
├── browserMain
├── commonMain
├── commonTest
├── iosMain
├── iosTest
├── jsMain
└── main
my config so far looks like
js("browser") {
val main by compilations.getting {
kotlinOptions {
outputFile = "${buildDir}/web/${project.parent?.name?.toLowerCase() ?: name}-browser.js"
noStdlib = false
moduleKind = "umd"
}
}
}
so can I bundle here? or do people usually do a mulit project build and bundle elsewhere?