Alex Nordlund
Alex Nordlund
Following the investigation I think this sounds like it could be related to https://github.com/gradle/gradle/issues/10483#issuecomment-2141505147 and https://youtrack.jetbrains.com/issue/IDEA-334183 Which to my understanding means that if you're on Java 21 `PATH` changes won't...
Initial support was added in #290, there's some additional work to be done listed in #291
`NodeExecConfiguration` doesn't necessarily need `Project` though :-) In your case I think you might want to have Gradle inject the services that are in `ProjectHelperApi` instead of depending on our...
I've created https://github.com/node-gradle/gradle-node-plugin/pull/202 where I've started opening classes, it doesn't have all of them yet but I believe it should be the major ones necessary, let me know if there's...
Would the `.nvmrc` reside in the root of the project or in the project where the plugin is actually installed? It's a good idea and at a minimum there'll be...
I've had some success with getting `node` detection (and downloading) working and while node detection should work great with the Worker API I'm unfortunately not quite sure how to expose...
I think we might want to change the default node version to 16 (even though it's not LTS) and maybe log a warning when using `download = true` and a...
Ah if they allow those version numbers that's going to be tricky (but not in the future!). I'm currently doing some prototyping around moving the `node`/`npm` downloading/setup into Gradle's Shared...
Although if you are very crafty and like workarounds you could use something like https://github.com/node-gradle/gradle-node-plugin/issues/54#issuecomment-581950868 :grinning: If you parse the links on https://nodejs.org/dist/ and turn those into versions, then you...
@XhstormR bad news is that the initial idea has class loader issues The good news is that the abstractions for workers are getting better If you have a concrete use-case...