https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
a

audax

07/14/2020, 7:31 AM
I made an example project of a Kotlin MP library with a Vue.js TypeScript application with proper TypesScript headers of the Kotlin library and gradle integration of Vue.js: https://github.com/audax/kotlin-vue-typescript-example
👀 1
c

christophsturm

07/14/2020, 9:55 AM
thanks thats pretty useful to me
can you maybe add build instructions to the readme?
ok just had to run
yarn
in the frontend dir to get it to build
a

audax

07/15/2020, 5:42 AM
The build is integrated with gradle, so you can run
./gradlew yarn
to build the frontend
and you have tasks like
./gradlew :examplemp-front:test
that call
yarn test:unit
I wanted to have an integrated build, since I will add a spring boot application to my project as well and have both frontend and backend always in sync
21 Views