Comparing version 1.2.7 to 1.2.8
{ | ||
"name": "rbwhat", | ||
"version": "1.2.7", | ||
"version": "1.2.8", | ||
"description": "Quickly list review-board requests that need your attention", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -96,4 +96,3 @@ #!/usr/bin/env node | ||
bug = request.bugs_closed[0]; | ||
bug = bug ? config.bugUrl + bug : 'None'; | ||
bug = 'bug '.grey + pad(bug, 24).white; | ||
bug = bug ? config.bugUrl.grey + bug.white : 'None'.white; | ||
url = ("" + config.url + "r/" + request.id + "/").underline; | ||
@@ -103,3 +102,3 @@ if (config.linkDiff) { | ||
} | ||
return [title, " " + bug, " " + repo + config.branchWedge.grey + branch, " " + url]; | ||
return [title, " " + (pad(bug, 24)), " " + repo + config.branchWedge.grey + branch, " " + url]; | ||
}; | ||
@@ -106,0 +105,0 @@ |
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
70353
184