npm WARN deprecated request
cdalexndr opened this issue · 2 comments
cdalexndr commented
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
This is npm telling you that you're using a deprecated package, not an issue with the plugin
cdalexndr commented
ok, thanks