diff --git a/.changeset/modern-balloons-film.md b/.changeset/modern-balloons-film.md new file mode 100644 index 0000000..0af7ddc --- /dev/null +++ b/.changeset/modern-balloons-film.md @@ -0,0 +1,5 @@ +--- +"trello-cli": patch +--- + +Show labels when listing all cards diff --git a/packages/trello-cli/src/commands/card/list.ts b/packages/trello-cli/src/commands/card/list.ts index 189e585..f237e1d 100644 --- a/packages/trello-cli/src/commands/card/list.ts +++ b/packages/trello-cli/src/commands/card/list.ts @@ -27,6 +27,7 @@ export default class List extends BaseCommand { due: d.due, closed: d.closed, url: d.url, + labels: d.labels, }; }); }