Comparing version 1.2.2 to 1.2.3
@@ -0,1 +1,5 @@ | ||
## 1.2.3 (September 20, 2017) | ||
- Rolled back passing params to `args()` back as array | ||
## 1.2.2 (September 18, 2017) | ||
@@ -2,0 +6,0 @@ |
@@ -731,6 +731,6 @@ var MAX_LINE_WIDTH = process.stdout.columns || 200; | ||
command.init_(item.args); | ||
command.init_(item.args.slice()); // use slice to avoid args mutation in handler | ||
if (item.args.length) | ||
command.args_.apply(command, item.args); | ||
command.args_(item.args.slice()); // use slice to avoid args mutation in handler | ||
@@ -737,0 +737,0 @@ // apply regular options |
@@ -7,3 +7,3 @@ { | ||
"license": "MIT", | ||
"version": "1.2.2", | ||
"version": "1.2.3", | ||
"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
25520