npm-registry-fetch
Advanced tools
Comparing version 3.2.0 to 3.2.1
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="3.2.1"></a> | ||
## [3.2.1](https://github.com/npm/registry-fetch/compare/v3.2.0...v3.2.1) (2018-08-16) | ||
### Bug Fixes | ||
* **opts:** pass through non-null opts.retry ([beba040](https://github.com/npm/registry-fetch/commit/beba040)) | ||
<a name="3.2.0"></a> | ||
@@ -7,0 +17,0 @@ # [3.2.0](https://github.com/npm/registry-fetch/compare/v3.1.1...v3.2.0) (2018-07-27) |
@@ -86,3 +86,3 @@ 'use strict' | ||
referer: opts.refer, | ||
retry: opts.retry || { | ||
retry: opts.retry != null ? opts.retry : { | ||
retries: opts['fetch-retries'], | ||
@@ -89,0 +89,0 @@ factor: opts['fetch-retry-factor'], |
{ | ||
"name": "npm-registry-fetch", | ||
"version": "3.2.0", | ||
"version": "3.2.1", | ||
"description": "Fetch-based http client for use with npm registry APIs", | ||
@@ -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
36142