<@U33H6SB2B> I was trying to apply Seskar to my Mu...
# javascript
e
@turansky I was trying to apply Seskar to my Multiplatform project, and I'm blocked on an issue with the React part. When I apply
SeskarGradleSubplugin
, it transitively applies
SeskarReactPlugin
which asks for
jsMainImplementation
.
Copy code
dependencies {
  JS_MAIN_IMPLEMENTATION(SESKAR_REACT)
}
I don't need the React part, and also I get
Copy code
An exception occurred applying plugin request [id: 'externals.module']
> Failed to apply plugin class 'seskar.gradle.plugin.SeskarReactPlugin'.
   > Configuration with name 'jsMainImplementation' not found.
t
Looks like GitHub issue :(
e
Can't open one 👀
Seems like you need to enable them
t
Pull requests are already enabled 😉
e
My Gradle skills are abysmal 😂 But I guess it would require publishing two plugins instead of one?
t
Second plugin isn't expected
e
You mean the React one is going away entirely?
t
🤔
e
What I meant is that it seems now you're publishing a single plugin to Maven Central, if I don't apply the React one by default, wouldn't you need to publish that one too separately?
t
It will be single jar in any case
Like in Kotlin :)