Hey all, on upgrade to Compose MPP 1.4.3 and Kotli...
# compose-web
m
Hey all, on upgrade to Compose MPP 1.4.3 and Kotlin 1.9.0 (from 1.4.1 and 1.8.2),
./gradlew jsApp:jsBrowserProductionWebpack
now generates an empty build folder where previously it used to put the entire app (html, js, wasm, etc) in
js/build/distributions/
. Is there a new gradle tasks to do this? Is it now broken?
FWIW,
jsApp:jsBrowserProductionRun
compiles and serves the jsApp module without issue.
Ah I found it, the output directory structure changed unexpectedly.
jsApp/build/distributions/*
->
jsApp/build/dist/jsApp/productionExecutable/*
👍 1
o
Indeed unexpected. I guess the change came from Kotlin 1.9. We haven't interoduced any related changes in the compose gradle plugin. Thanks for reporting!