Is there an option to disable generation of skiko....
# webassembly
r
Is there an option to disable generation of skiko.wasm and skiko.js when building kotlin/wasm app?
Or is it generated by compose?
b
They are Compose for Web’s dependencies
they are required for Compose for Web
but you shouldn’t get them if you don’t use compose
r
I use compose but not compose for web (only runtime)
b
I guess this files added by compose gradle plugin (cc @Oleksandr Karpovich [JB])
As workaround, you can probably remove them with gradle
r
I can just ignore them, but I suppose generating and copying takes time.
b
I’m wondering how do you use runtime
what for?
r
I love creating frameworks 😉 So I'm playing with a new one 😉
b
Do you use DOM elements as a building block?
r
It's hard to answer this question 🙂
b
🤔
ok, what is building block then?
r
DOM elements are there, but hidden under kvision-like components.
I'm still at the proof of concept level
b
what’s difference from kvision?
r
powered by compose runtime, no virtual dom, support both wasm and js target with the same application code
👍 3
o