yg-team-cli 2.6.0 → 2.6.1

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/dist/cli.js CHANGED
@@ -4654,9 +4654,9 @@ async function displayFeatureInventory() {
4654
4654
  ]);
4655
4655
  logger.table(["\u529F\u80FD", "\u72B6\u6001", "\u8FDB\u5EA6"], tableData);
4656
4656
  logger.newLine();
4657
- const completed = inventory.filter((i) => i.status === "\u5DF2\u5B8C\u6210").length;
4658
- const inProgress = inventory.filter((i) => i.status === "\u8FDB\u884C\u4E2D").length;
4659
- const pending = inventory.filter((i) => i.status === "\u672A\u5F00\u59CB").length;
4657
+ const completed = inventory.filter((i) => i.status.includes("\u5DF2\u5B8C\u6210")).length;
4658
+ const inProgress = inventory.filter((i) => i.status.includes("\u8FDB\u884C\u4E2D")).length;
4659
+ const pending = inventory.filter((i) => i.status.includes("\u672A\u5F00\u59CB")).length;
4660
4660
  logger.info(`\u603B\u8BA1: ${inventory.length} | \u5DF2\u5B8C\u6210: ${completed} | \u8FDB\u884C\u4E2D: ${inProgress} | \u672A\u5F00\u59CB: ${pending}`);
4661
4661
  logger.newLine();
4662
4662
  }