@travetto/exec
Advanced tools
Comparing version 0.3.11 to 0.3.12
@@ -11,3 +11,3 @@ { | ||
"dependencies": { | ||
"@travetto/base": "^0.3.13", | ||
"@travetto/base": "^0.3.14", | ||
"@types/generic-pool": "^3.1.4", | ||
@@ -31,4 +31,4 @@ "generic-pool": "^3.4.2" | ||
}, | ||
"version": "0.3.11", | ||
"gitHead": "a00705e43a736686278b69b58225d49d970ad1cb" | ||
"version": "0.3.12", | ||
"gitHead": "7ee03431f510df773d5869aee70e3c91758f5ff3" | ||
} |
@@ -16,3 +16,4 @@ import * as os from 'os'; | ||
min: 1, | ||
...(opts || {}) | ||
evictionRunIntervalMillis: 5000, | ||
...(opts || {}), | ||
}; | ||
@@ -76,4 +77,4 @@ | ||
await this.pool.drain(); | ||
this.pool.clear(); | ||
await this.pool.clear(); | ||
} | ||
} |
@@ -54,3 +54,3 @@ import * as cp from 'child_process'; | ||
p.on('close', (code: number) => | ||
finish({ code, stdout, stderr, valid: code === null || code === 0 })); | ||
finish({ code, stdout, stderr, valid: code === null || code === 0 || code === 130 })); // Sigint | ||
@@ -57,0 +57,0 @@ if (timeout) { |
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
31290
832
Updated@travetto/base@^0.3.14