fix: keep branch follower json concise by default
This commit is contained in:
@@ -142,7 +142,6 @@ function parseOptions(args: string[]): ParsedOptions {
|
||||
options.full = true;
|
||||
} else if (arg === "--raw" || arg === "--json") {
|
||||
options.raw = true;
|
||||
options.full = true;
|
||||
options.output = "json";
|
||||
} else if (arg === "--record-state") {
|
||||
options.recordState = true;
|
||||
@@ -154,7 +153,6 @@ function parseOptions(args: string[]): ParsedOptions {
|
||||
options.output = value === "wide" || value === "text" ? "human" : value;
|
||||
if (value === "json" || value === "yaml") {
|
||||
options.raw = true;
|
||||
options.full = true;
|
||||
}
|
||||
} else if (arg === "--limit") {
|
||||
options.limit = positiveInt(valueOption(rest, ++index, arg), arg);
|
||||
|
||||
Reference in New Issue
Block a user