auto-release-cli
Advanced tools
Comparing version 0.33.2 to 0.33.3
@@ -0,1 +1,13 @@ | ||
# 0.33.3 (Sun Dec 16 2018) | ||
#### 🐛 Bug Fix | ||
- only error if there are actually missing args [#95](https://github.com/intuit/auto-release/pull/95) ([@hipstersmoothie](https://github.com/hipstersmoothie)) | ||
#### Authors: 1 | ||
- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) | ||
--- | ||
# 0.33.1 (Sun Dec 16 2018) | ||
@@ -2,0 +14,0 @@ |
@@ -470,5 +470,7 @@ "use strict"; | ||
var multiple = missing.length > 1; | ||
printCommandHelp(command); | ||
signale_1.default.error("Missing required flag" + (multiple ? 's' : '') + ": " + missing.join(', ')); | ||
process.exit(0); | ||
if (missing.length > 0) { | ||
printCommandHelp(command); | ||
signale_1.default.error("Missing required flag" + (multiple ? 's' : '') + ": " + missing.join(', ')); | ||
process.exit(0); | ||
} | ||
} | ||
@@ -475,0 +477,0 @@ return autoOptions; |
{ | ||
"name": "auto-release-cli", | ||
"description": "CLI tools to help facilitate semantic versioning based on Github PR labels.", | ||
"version": "0.33.2", | ||
"version": "0.33.3", | ||
"author": { | ||
@@ -6,0 +6,0 @@ "name": "Andrew Lisowski", |
Sorry, the diff of this file is not supported yet
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
252812
3340