srs / gradle-node-plugin

Gradle plugin for integrating NodeJS in your build. :rocket:
Apache License 2.0
867 stars 210 forks source link

npm WARN deprecated request #366

Closed cdalexndr closed 4 years ago

cdalexndr commented 4 years ago

When I run a NpmTask it prints this warning: npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142

Gradle task:

task npm_install_dep(type: NpmTask) {
    workingDir = file("$buildDir/public")
    args = ["install", '--production']
}
deepy commented 4 years ago

This is npm telling you that you're using a deprecated package, not an issue with the plugin

cdalexndr commented 4 years ago

ok, thanks