Alex Nordlund
Alex Nordlund
Composite builds work great, provided that you've got the source on the same machine. If I wanted to try something in our internal CI env I'd need a snapshot, if...
Yeah, along with the other jars like javadoc and sources
We still want to solve the underlying issue here, even if a workaround exists :-)
Ooh, that's a neat feature from 6.1 that I'd missed, `forUseAtConfigurationTime()` makes everything safe for the configuration cache, so in general we should go for that. For groovy I think...
This is the same issue as #54 There's a workaround in https://github.com/node-gradle/gradle-node-plugin/issues/54#issuecomment-581950868 But the short of it is that you'll have to use `distBaseUrl = null` and manually add an...
Oh I missed the follow-up, but yeah, https://github.com/node-gradle/gradle-node-plugin/issues/54#issuecomment-581950868 sounds like what you want, `NodeVersion.of(14)` is not strictly equivalent to `14.+` but you can fulfill `NodeVersion.of(14)` with `version.set("14.0.0")` since even the...
`YarnExecRunner` is on the list of things to be opened, but I've had limited time and not been able to work through all of it yet The work is being...
@pun-ky I've looked at [lighthouse/runner/Runner.kt#L55](https://github.com/wttech/gradle-lighthouse-plugin/blob/b2c137a5548c22fd6a489d1bbf5f50cfda78320d/src/main/kotlin/com/cognifide/gradle/lighthouse/runner/Runner.kt#L55) and the API has changed from `2.x` You probably want to do pretty much the same thing as `YarnTask`'s [exec method](https://github.com/node-gradle/gradle-node-plugin/blob/8e9ff6060225a3cce33687a3fd2ff0637e47d632/src/main/kotlin/com/github/gradle/node/yarn/task/YarnTask.kt#L70-L74). I haven't thought all...
Given that 1.19.1 is the current stable that should be fine
I wonder if this is a bug or a timing issue, because testing node `18.15.0` on `openjdk:11` (through docker with `--platform linux/amd64`) seems to work on my machine But it's...