Hello all, We were trying to create a multiplatform library in our project, the idea is to create a npm package which can be publish and use from nodejs project and jar which can be used from Kotlin jvm project.
What we observe that in js generated package we are getting dependency of "kotlin-test-js-runner" and "kotlin-test" as result when we are using the publish package we are getting "kotlin-test" and "kotlin-test-js-runner" as dependency which I think we dont require.
Is there configuration I can do in multiplatform library so that generated js dont have these two dependencies.
A sample code on github
https://github.com/ashishkujoy/kotlin-js-jvm-library
Thanks.