Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rbwhat

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rbwhat - npm Package Compare versions

Comparing version 1.1.4 to 1.1.5

2

package.json
{
"name": "rbwhat",
"version": "1.1.4",
"version": "1.1.5",
"description": "Quickly list review-board requests that need your attention",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -77,8 +77,8 @@ #!/usr/bin/env node

var branch, bug, repo, title, url, _ref;
repo = pad(((_ref = request.links.repository) != null ? _ref.title : void 0) || 'No Repo', 25).white;
repo = 'repo '.grey + repo;
title = request.summary.bold;
repo = ((_ref = request.links.repository) != null ? _ref.title : void 0) || 'No Repo';
repo = pad(repo, 25);
bug = request.bugs_closed[0];
bug = bug ? config.bugPrefix + bug : 'None';
bug = 'bug '.grey + pad(bug, 22).white;
bug = 'bug '.grey + pad(bug, 24).white;
branch = 'branch '.grey + (request.branch || 'None').white;

@@ -89,3 +89,3 @@ url = ("" + config.url + "r/" + request.id + "/").underline;

}
return ["" + (pad(colorName(submitter, submitter), 18)) + " " + repo.white + " " + title, " " + bug + branch, " " + url + " " + (formatDate(request.time_added))];
return ["" + (pad(colorName(submitter, submitter), 25)) + " " + title, "" + repo + " " + bug + " " + branch, " " + url + " " + (formatDate(request.time_added))];
};

@@ -92,0 +92,0 @@

@@ -12,5 +12,5 @@ # Description

## Structure and Colors
* Developer's name in blue for yourself - purple for others
* Developer's name in purple, but blue for yourself
* Review title in bold
* Repository in white
* Review title in bold
* Jira ticket or bug identifier in white

@@ -37,4 +37,4 @@ * Branch in white

rbwhat
userName repoName reviewTitle
bug TEAM-4242 branch make_my_feature_win
userName reviewTitle
repo repoName bug TEAM-4242 branch make_my_feature_win
https://reviewboard.pwn/r/4242/diff 5 days ago

@@ -44,6 +44,7 @@ reviewer 5 days ago

reviewer 7 hours ago
bill cool-project I'm trying to make it win
bug TEAM-424242 branch best_feature_ever
bill I will make it win
repo cool-project bug TEAM-424242 branch best_feature_ever
https://reviewboard.pwn/r/424242/diff a day ago
bob 42 minutes ago
bert a minute ago
```

@@ -50,0 +51,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc