Michel Werren
Michel Werren
Another possible way would be to use JsonCreator: ```kotlin inline class InlineType(val value: String) data class ContainsInlineType(val inlineType: InlineType) { companion object { @JsonCreator @JvmStatic fun create(inlineType: String) = ContainsInlineType(InlineType(inlineType))...
Looks to me thats this is maybe a general Swarm problem, because for me even original local volumes lost there configuration when they get applied to worker nodes
I did not dive into, but the EOENT failure sound like a problem i got. I also never did use HMR, but may this workaround helps: https://discuss.kotlinlang.org/t/kotlin-js-incremental-compilation/11380 I hope it...
PR: https://github.com/Kotlin/kotlin-frontend-plugin/pull/132
There is a PR for that ... as quick fix you can fork this plugin and apply the changes: https://github.com/Kotlin/kotlin-frontend-plugin/pull/97 Then you are able to set binLinks = false within...
As JakeWharton mentioned, you miss the closure: compileKotlin2Js { kotlinOptions.moduleKind = 'commonjs' } In the file https://github.com/jonninja/kotlin-webpack-multimodule-error/blob/master/sample-common-js/build.gradle This should solve it.
Hello I think, the best way in your case would be to migrate to the 1.3.40+ Kotlin Gradle plugin, as from this version on, the NPM support is built-in, based...
If you have trouble to define test dependencies. It looks like, it's currently not possible to define test dependencies like production ones ... here a snipped from one of my...
Afaik there is no documentation at the moment. But only few steps are needed. 1. Create Multiplatform project https://kotlinlang.org/docs/reference/building-mpp-with-gradle.html#setting-up-a-multiplatform-project 2. Implement your platform specific / inter-platform code 3. Add this...
As all npm, Karma etc. files are generated by Gradle i think it makes sense to place them within Gradle build dir. You need autocompletion for JS code? Whats the...