Alex Nordlund

Results 384 comments of Alex Nordlund

I can recommend adding your local nexus to `nonProxyHosts` and turning on proxy support again, even if things work :-)

The current use of VariantComputer (iirc) is pretty much limited to: figuring out the paths of things _if_ `download = true` and figuring out whether we want to call `node`...

Do you need these to be generic or is there a different set of them? If you've got a set of them you can do something like the following for...

On one hand this makes perfect sense and this absolutely shouldn't differ between the different tools But on the other hand, we want to discourage the use of the rule-generated...

This is unfortunately a bit tricky, since for some teams `npmInstall` is the majority of their build process and adding `node_modules` to `clean` would mean that some teams that I...

It'd probably be pretty easy to add a finalizer for `nodeSetup` which does this locally, but I guess your intended use-case is to add it to the path for easier...

If you're ok with some extra space taken you could try creating a gradle `Copy` and tell `nodeSetup` that it's [finalizedBy](https://docs.gradle.org/current/dsl/org.gradle.api.Task.html#org.gradle.api.Task:finalizedBy) that task, which would just move it one step...

Something like this, it'd make sure that there's always a `node` folder with the content of `nodeSetup`, all the tasks would still use the `build/nodejs/version/bin/node` but you'd have an easy...

The way that this plugin picks binaries is the same way that most things do, it gets the first one on `PATH` If you're starting your build from command-line it...

Can't link to the code as I'm on phone, but if you look at my last PR, the one about improving BSD support it's affecting the relevant places