@mailmodo/cli 0.0.47-beta.pr49.75 → 0.0.48-beta.pr50.76

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.
@@ -57,7 +57,8 @@ export default class Logs extends BaseCommand {
57
57
  const contact = entry.contact || '';
58
58
  this.log(` ${time}${templateId}${status}${contact}`);
59
59
  if (entry.reason) {
60
- this.log(` ${' '.repeat(52)}${chalk.dim(`(reason: ${entry.reason})`)}`);
60
+ const label = entry.status === 'skipped' ? 'condition not met' : 'reason';
61
+ this.log(` ${' '.repeat(52)}${chalk.dim(`(${label}: ${entry.reason})`)}`);
61
62
  }
62
63
  }
63
64
  const totalPages = Math.ceil(total / limit);
@@ -657,5 +657,5 @@
657
657
  ]
658
658
  }
659
659
  },
660
- "version": "0.0.47-beta.pr49.75"
660
+ "version": "0.0.48-beta.pr50.76"
661
661
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mailmodo/cli",
3
3
  "description": "Email lifecycle automation for the AI-native builder generation.",
4
- "version": "0.0.47-beta.pr49.75",
4
+ "version": "0.0.48-beta.pr50.76",
5
5
  "author": "provishalk",
6
6
  "bin": {
7
7
  "mailmodo": "bin/run.js"