@capriza/http-utils
Advanced tools
Comparing version 0.2.16-dev.0 to 0.2.16-dev.1
@@ -45,3 +45,9 @@ | ||
console.log(`${new Date()} running npm install ${dep}@${versionTag}`); | ||
execSync(`npm install --save ${dep}@${versionTag}`); | ||
try { | ||
execSync(`npm install --save-exact ${dep}@${versionTag}`); | ||
} catch(ex) { | ||
if (!(ex && ex.message && ex.message.indexOf("code ETARGET") > -1)) | ||
throw ex; | ||
console.log(`${new Date()} skipping installation of ${dep} with versionTag=${versionTag} - tag doesn't exist (used latest tag)`); | ||
} | ||
}); | ||
@@ -48,0 +54,0 @@ } |
{ | ||
"name": "@capriza/http-utils", | ||
"version": "0.2.16-dev.0", | ||
"version": "0.2.16-dev.1", | ||
"description": "HTTP Request utils that handles, request-response, errors, concurrency, priority and authentication", | ||
@@ -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
43758
627