Antoine Lethimonnier

Results 39 comments of Antoine Lethimonnier

> https://github.com/WarningImHack3r/intellij-shadcn-plugin uses IntelliJ Ultimate [...] so a total of currently 9-10 GA releases (same thing for https://github.com/WarningImHack3r/npm-update-dependencies)

Update: @YannCebron / @novotnyr it seems even worse with the Plugin Template 2.0, as now with the same plugins and after dropping respectively 1 whole major version and 2 minor...

> @WarningImHack3r , has this problem been resolved on your end? No it’s not, I’ve simply disabled this step on both my plugins unfortunately… We kinda get "punished" for supporting...

Yep you got it correctly! Sorry for being unclear. What's the Shadow plugin? Do you think I can try to use the Gradle `constraints` API to override the bundled dep?...

@sandwwraith ok that looks a bit like what I meant to do with Gradle; I'm going to try that filtering thing while the ticket's being processed! Thanks

@sandwwraith I can't manage to make it work: ```gradle // build.gradle.kts ... tasks { shadowJar { relocate("kotlinx.serialization.json", "a") { exclude("kotlinx.serialization.json.*") } } ... ``` This does absolutely nothing

(I'd close as won't fix instead to not mislead people into thinking the problem is solved)

First off, thanks for your quick and comprehensive response! > I think it's possible to write a plugin for Vue 3. [...] There are tutorials about how to write plugins....

> There are tutorials for `transform()` as well. Regarding plugins, they apply to `parse()`, `transform()`, `transpile()` the same way so that any tutorials are worth reading. `transform()` just directly converts...

> In `transform()`, there is no concept called target language. It just **directly** casts AST to code. You put a TsTypeAnn `number` after an Ident `a`, you get `let a:...