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

With the following configuration, I noticed that the gradle npm task is not failing when it should. I tested this by running the `npm run test` task directly from the...

workaround exists

Bump com.fasterxml.jackson.core/jackson-databind to 2.17.2 due to v3 https://security.snyk.io/vuln/SNYK-JAVA-COMFASTERXMLJACKSONCORE-7569538

Hello, I am encountering an error when attempting to apply this plugin to my project on a Windows ARM64 device. The same plugin configuration on a Windows x64 device builds...

bug

Hi, Sometimes the nodeSetup task is failing with the error 'Couldn't follow symbolic link.' on osx. Cleaning the .gradle directory fixes the issue. ``` > Task :myproject:nodeSetup FAILED FAILURE: Build...

Please add license information, project URL, and so on to the published POMs, so that when for example using tools like https://github.com/jk1/Gradle-License-Report it can properly determine the necessary information for...

This plugin offers a functionality to download Node.js. If this functionality is used this plugin registers a new ivy repository for gradle. This doesnt work very well if a user...

question

There’s an issue with mac silicion+intellij, whereby gradle process executor is not respecting path environment variables. This gets around that by using a fix for the plugin whereby we attempt...

I'm using the following `build.gradle.kts`: ```kotlin node { download = true version = "18.15.0" workDir = layout.buildDirectory.dir("nodejs") } val npmExec = if (System.getProperty("os.name").lowercase().contains("windows")) "/npm.cmd" else "/bin/npm" spotless { isEnforceCheck =...

Nowadays the proper way to provision package managers is corepack as the package manager version is codified in the package.json. Some package managers even refuse to launch when another is...

Currently, the plugin is not signed, so dependency verification has to use checksums. See: * https://docs.gradle.org/current/userguide/dependency_verification.html --- Note: if you release with GitHub Actions workflow, then you can generate PGP...