Hi, starting from an app created with create-react-kotlin-app how can add an external Kotlin dependency? For instance I have a KotlinJS project called my-lib and a Kotlin/React project called my-app. How can I use my-lib in my-app? Thanks 🙂
a
Alexander Mikhalchenko
10/24/2018, 7:05 AM
You could publish your library to NPM and then add it to
Uhm... I did this using npm link, I think that it is the same, but the compiler don't find my library as kotlin library. Maybe that something it's wrong. Later I will retry. Thanks for the answer.