gradle-node-plugin
gradle-node-plugin copied to clipboard
Gradle plugin for integrating NodeJS in your build. :rocket:
Extracting #204 But instead of using `uname` on M1 macs we should be using `sysctl sysctl.proc_translated`
``` > Task :yarnSetup FAILED added 1 package, and audited 2 packages in 716ms found 0 vulnerabilities Reshimming asdf nodejs... /opt/homebrew/opt/asdf/libexec/lib/commands/reshim.bash: line 29: $2: unbound variable FAILURE: Build failed with...
Have a look at if we can support turborepo
I know I can add environment variables like this: ``` task verify(type: NpmTask) { environment = ['CYPRESS_BASE_URL' : "http://localhost:9999"] args = ['run', 'verify'] } ``` But in my case the...
Right now the plugin tries to resolve the current system and the used architecture on its own. That's okay for most use cases. With the new Apple M1 silicon it...
``` > Task :subproject:yarnSetup npm WARN config global `--global`, `--local` are deprecated. Use `--location=global` instead. changed 1 package, and audited 2 packages in 835ms found 0 vulnerabilities ``` This is...
Previously we've accidentally depended on the `isWindows` check to see if we're on a supported platform or not, this had the unfortunate side-effect that even with `download = false` we...
`pnpm npx` was deprecated and dropped from the PR, we should probably look into supporting `pnpm dlx`
If I configure node like this: ``` configure { version = "12.13.0" download = true workDir = file("${rootDir}/build/nodejs") } ``` .. the node binary will end up in `build/nodejs/node-v12.13.0-darwin-x64/bin/node`, which...
Hi It is possible to configure a task for a project to run in parallell ? Say for instance if I have a task that run "ng lint" and one...