@aaronshaf/ger 1.2.9 → 1.2.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aaronshaf/ger",
3
- "version": "1.2.9",
3
+ "version": "1.2.10",
4
4
  "description": "Gerrit CLI",
5
5
  "main": "src/ger.ts",
6
6
  "bin": {
@@ -123,7 +123,7 @@ function output(
123
123
  if (isVerbose) {
124
124
  table.push([
125
125
  `${bold(localBranch)}${topicText}\n${localBranchDataMap[localBranch].shortHash}`,
126
- `${labels.join(" ")}`,
126
+ `${labels.join("\n")}`,
127
127
  `${subject}\n${yellow(gerritData.url.replace("https://", ""))}`,
128
128
  approvalText,
129
129
  ]);
package/src/utils.ts CHANGED
@@ -13,7 +13,7 @@ export function bold(text: string) {
13
13
  }
14
14
 
15
15
  export function grey(text: string) {
16
- return `\x1b[37m\x1b[40m${text}\x1b[0m`;
16
+ return `\x1b[90m${text}\x1b[0m`;
17
17
  }
18
18
 
19
19
  export function darkBrown(text: string) {