Comparing version 1.1.1 to 1.1.2
@@ -0,1 +1,5 @@ | ||
## 1.1.2 (December 3, 2016) | ||
- Fix exception on `Command#normalize()` | ||
## 1.1.1 (May 10, 2016) | ||
@@ -2,0 +6,0 @@ |
@@ -760,3 +760,3 @@ var MAX_LINE_WIDTH = process.stdout.columns || 200; | ||
if (hasOwnProperty.call(this.values, name)) | ||
result[name] = hasOwnProperty.call(values, name) && hasOwnProperty(this.options, name) | ||
result[name] = hasOwnProperty.call(values, name) && hasOwnProperty.call(this.options, name) | ||
? this.options[name].normalize.call(this, values[name]) | ||
@@ -763,0 +763,0 @@ : this.values[name]; |
@@ -7,3 +7,3 @@ { | ||
"license": "MIT", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"keywords": [ | ||
@@ -10,0 +10,0 @@ "cli", |
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
24780