arrow-meta
arrow-meta copied to clipboard
Support for the Javascript target?
Is your feature request related to a problem? Please describe. I try (and fail desperately) to create arrow meta plugin for the JS target.
Describe the solution you'd like I' like to see a working example for the JS target?
Describe alternatives you've considered I d have to write a very low level plugin.
I tried the following setup with dem hello world example:
tasks.withType<Kotlin2JsCompile>().configureEach {
kotlinOptions.freeCompilerArgs =
listOf("-Xplugin=${project.rootDir}/create-plugin/build/libs/create-plugin-all.jar")
}
The Plugin seems to get activated, but the code is not beeing transformed.
Could someone please confirm that js target does not work at all?