After building kotlin/multiplatform project via `g...
# multiplatform
j
After building kotlin/multiplatform project via
gradlew build
, where can I find generated JS file? I searched all over
build
folder but couldn't find any. a lot of build data for JS is generation, but no actual JS file is found, and I get no errors either
g
(You may have searched them in the root build directory, I suppose you have at least one module, and each module contains its own build folder.) For generation, I use
jsBrowserDistribution jsPublicPackageJson
and I get the js files from
build/compileSync/main/productionExecutable/kotlin
j
Thanks!