Alex Nordlund

Results 384 comments of Alex Nordlund

Just want to stress the point that this is basically only about priorities, and with the recent PR adding bun support I'm now in a state where I _have_ to...

`environment` when set is a [MapProperty](https://docs.gradle.org/current/javadoc/org/gradle/api/provider/MapProperty.html) so in the case of `doFirst` `environment.put('CYPRESS_BASE_URL', 'http://localhost:" + randomPort]` might work better. Or if you can turn the `randomPort` part into a provider...

https://docs.gradle.org/current/userguide/build_services.html might be of interest as well

But if your CI environment already has node and npm installed shouldn't you be using `download = false`? If your CI environment has some environment variable set (like `CI`) you...

I'm not sure why an environment variable check would take time, but I think I can confidently say that implementing that will be faster than building the detection functionality in...

I thought OpenBSD removed the Linux emulation. But while I wish we could support it, unless you're fetching someone else's builds that change will only mean that the Linux node...

Oooh that is a bug then, I don't the error should be appearing at all with `download = false` My initial reason for starting to look into the code of...

The configuration-cache changes exposed some sharp angles and there's been a bunch of changes I've had to do to accommodate them In hindsight, this should just have been stored on...

Any proxies involved in the mix? Might be worth trying with [ProxySettings.OFF](https://github.com/node-gradle/gradle-node-plugin/blob/master/docs/usage.md#using-a-proxy)

The implementation of this got a bit messy and there's a bunch of things that need to be fixed to do this properly, but I've started a WIP PR at...