gradle-node-plugin icon indicating copy to clipboard operation
gradle-node-plugin copied to clipboard

Gradle plugin for integrating NodeJS in your build. :rocket:

Results 96 gradle-node-plugin issues
Sort by recently updated
recently updated
newest added

I'm trying to write a task that uses the [Worker API](https://docs.gradle.org/current/userguide/worker_api.html#worker_api) to execute several npx tasks in parallel. The parameters encoded in the `WorkParameters` class need to serializable, but since...

We have been using gradle-node-plugin for a few years now and it has worked normally (thank you). Now, due to an angular version update (from angular 19 to 20) we...

Implement `ValueSource` for executing npm. This is a very rough first draft. See #334 for motivations. Example usage: ```kotlin // build.gradle.kts val npmExec = providers.of(NpmExecSource::class) { /* ... */ }...

NodePlugin runs `uname` twice: - Once on line 90 (the result is unused) https://github.com/node-gradle/gradle-node-plugin/blob/7.1.0/src/main/kotlin/com/github/gradle/node/NodePlugin.kt#L90-L94 - Again on lines 91-94 https://github.com/node-gradle/gradle-node-plugin/blob/7.1.0/src/main/kotlin/com/github/gradle/node/NodePlugin.kt#L91-L94 Perhaps this is intentional, but I just wanted to double...

## Feature Request: Provide ValueSource implementations for running Node tools ### Summary Currently Gradle Plugin for Node has a 'task based' approach for running Node tools. One task can run...

### Description: When using the `npmInstall` task with with `npmInstallCommand='ci'` defined, the task appears to hang for approximately 10 or 20 minutes (depending on the project) before the task is...