conventional-github-releaser
Advanced tools
Comparing version 1.1.12 to 1.1.13
@@ -38,3 +38,3 @@ { | ||
}, | ||
"version": "1.1.12", | ||
"version": "1.1.13", | ||
"dependencies": { | ||
@@ -41,0 +41,0 @@ "conventional-changelog": "^1.1.0", |
@@ -110,25 +110,5 @@ #!/usr/bin/env node | ||
if (0 === data.length) { | ||
if (flags.verbose) { | ||
console.log('No GitHub releases created because no git tags available to work with.'); | ||
} | ||
process.exit(0); | ||
} | ||
var allRejected = true; | ||
for (var i = data.length - 1; i >= 0 ; i--) { | ||
if (data[i].state === 'fulfilled') { | ||
allRejected = false; | ||
break; | ||
} | ||
} | ||
if (allRejected) { | ||
console.error(data); | ||
process.exit(1); | ||
} else if (flags.verbose) { | ||
if (flags.verbose) { | ||
console.log(data); | ||
} | ||
}); |
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
20423
283