gradle-node-plugin
gradle-node-plugin copied to clipboard
Gradle plugin for integrating NodeJS in your build. :rocket:
- [ ] Verify the tests - [ ] Verify that the tests actually test bun - [ ] Check that the test cases use _either_ a downloaded or local...
Hi! How about supporting bun? Bun install makes our application download dependencies 80% faster, it would be cool if we could just use it as package manager!
`pnpm` is pretty fast. Running `pnpm install` generally takes a second or two when all is up-to-date even when there are many things in `package.json`. On the other hand, Gradle's...
I'm attempting to use the plugin with gradle version of 7.6 but I'm running into the error shown below. ``` Task :b:npmInstall FAILED npm ERR! code 127 npm ERR! path...
Hi i am using this plugin on 2 instances of linux. I have seen following error on 1 of the instance newly added to the system: Task ':OlisWebGUI:npm_install' is not...
I imagine a simple way to get the path to the node executable from the node extension. In my case I want to configure it for SonarQube, so a `String`...
One inherent limitation of Gradle projects is only a single task can run at any given time, with the Worker API (https://docs.gradle.org/current/userguide/worker_api.html#converting_to_the_worker_api) to allow many jobs to be run within...
so gradle now supports configuring java like this, which will install a gradle version of java if the required version isn't already available. I think it would be cool to...
It seems that the only place were OpenBSD support would need to be added is at [PlatformHelper.kt](https://github.com/node-gradle/gradle-node-plugin/blob/4d083a7d749908291872211b77ec007a2fff0af3/src/main/kotlin/com/github/gradle/node/util/PlatformHelper.kt) If you would add `name.contains("openbsd") -> "linux"` And also (for completeness) ``` name.contains("netbsd")...
Hi! Correct me if I'm wrong but from what I see user of gradle-node-plugin is supposed to choose between two options: 1) to download specific version of node.js 2) to...