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

https://nodejs.org/dist/index.tab and https://nodejs.org/dist/index.json has a list of all current versions to allow for versions like `16` to be installed we would ideally cache this file

build service / worker api

Due to https://github.com/nodejs/node/issues/42367 could you always execute `npm`,`npx` inside its file directory (e.g. `node-v17.7.1-linux-x64/bin` ? That would quickly solve this issue.

Thanks for the setup. It works flawlessly in my setup: https://github.com/gabyx/TechnicalMarkdown https://github.com/gabyx/TechnicalMarkdown/blob/feature/docker-image/build.gradle.kts

We can have option auto here: https://github.com/node-gradle/gradle-node-plugin/blob/master/docs/usage.md#configuring-the-plugin look at the comments ``` node { // options: yes | no | auto // Whether to download and install a specific Node.js...

build service / worker api

Currently, when using the gradle node plugin, the following directories are created during the build: - `.gradle/nodejs/` - `.gradle/npm/` - `node_modules/` The base gradle plugin provides a task named `clean`....

Thanks for this plugin and for your example shown in https://github.com/node-gradle/gradle-node-plugin/tree/master/examples/spring-boot-angular. While my current setup already triggers some npm tasks and compiles without any problem, `localhost:8080` still shows some json...

When I try to add registry parameter for npmSetup Task according to FAQ: ``` tasks.npmSetup { doFirst { args.addAll(['--registry', 'http://myregistry.npm.com']) } } ``` I get an error running npmSetup: ```...

From the npm docs: https://docs.npmjs.com/cli/v7/commands/npm-install#description ``` This command installs a package and any packages that it depends on. If the package has a package-lock, or an npm shrinkwrap file, or...

Hey! Thx for the updates in 3.x. However, now I see the problem when I am trying to upgrade Gradle Lighthouse Plugin which I am maintaining. Previously I was able...

Hi Caching is one the most exciting features in Gradle so I would mention it in the plugin documentation. So that new developers will be easier to use it. For...