consumer-contracts
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -20,2 +20,3 @@ var recursive = require('recursive-readdir'); | ||
var contracts; | ||
var exitStatus = 0; | ||
@@ -69,3 +70,4 @@ try { | ||
console.log(''); | ||
if (failures.length > 0) process.exit(1); | ||
if (failures.length > 0) exitStatus = 1; | ||
process.exit(exitStatus); | ||
}); | ||
@@ -104,2 +106,2 @@ } | ||
}); | ||
}; | ||
}; |
{ | ||
"name": "consumer-contracts", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Consumer driven contracts for Node.js", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
17388
321