Comparing version 2.1.1 to 2.1.2
@@ -6,2 +6,3 @@ 'use strict'; | ||
var eachAsync = require('each-async'); | ||
var TEN_MEBIBYTE = 1024 * 1024 * 10; | ||
@@ -42,3 +43,5 @@ function win(opts, cb) { | ||
eachAsync(['comm', 'args'], function (cmd, i, next) { | ||
childProcess.execFile('ps', [flags, 'pid,' + cmd], function (err, stdout) { | ||
childProcess.execFile('ps', [flags, 'pid,' + cmd], { | ||
maxBuffer: TEN_MEBIBYTE | ||
}, function (err, stdout) { | ||
if (err) { | ||
@@ -45,0 +48,0 @@ next(err); |
{ | ||
"name": "ps-list", | ||
"version": "2.1.1", | ||
"version": "2.1.2", | ||
"description": "Get running processes", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4255
72