@oclif/parser
Advanced tools
Comparing version 3.6.2 to 3.6.3
@@ -0,1 +1,8 @@ | ||
## [3.6.3](https://github.com/oclif/parser/compare/v3.6.2...v3.6.3) (2018-10-17) | ||
### Bug Fixes | ||
* falsy arg default ([#40](https://github.com/oclif/parser/issues/40)) ([2e73b4b](https://github.com/oclif/parser/commit/2e73b4b)) | ||
## [3.6.2](https://github.com/oclif/parser/compare/v3.6.1...v3.6.2) (2018-10-13) | ||
@@ -2,0 +9,0 @@ |
@@ -197,3 +197,3 @@ "use strict"; | ||
else { | ||
if (arg.default) { | ||
if ('default' in arg) { | ||
if (typeof arg.default === 'function') { | ||
@@ -200,0 +200,0 @@ args[i] = arg.default(); |
{ | ||
"name": "@oclif/parser", | ||
"description": "arg and flag parser for oclif", | ||
"version": "3.6.2", | ||
"version": "3.6.3", | ||
"author": "Jeff Dickey @jdxcode", | ||
@@ -6,0 +6,0 @@ "bugs": "https://github.com/oclif/parser/issues", |
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
41728