im trying to make a multi-platform app through two...
# javascript
h
im trying to make a multi-platform app through two projects that share some of source directories. I cant just put everything in
mylib.shim.*
because imports might be optimized by IDE, and that'll affect JVM platform too
a
Just to confirm: you have two separate projects, not a multiplatform project (https://kotlinlang.org/docs/reference/multiplatform.html), don't you?
If you do, you probably should consider merging those two into a single MPP project, unless you have a very good reason not to (please do share 🙂 )
h
Its coded like multiproject, but i didnt work on JS-specific part yet. I'll try to do it , use
actual
keyword and other things
That's my checklist: 1. make custom stdlib-js (done) 2. make sure js proect compiles with it 3. make sure js project runs with it 4. try to migrate to to MPP project
a
What do you need a custom stdlib for?