@wraps.dev/cli 2.18.2 → 2.18.3

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
@@ -5979,8 +5979,15 @@ function displaySuccess(outputs) {
5979
5979
  clack8.outro(pc10.green("Email infrastructure deployed successfully!"));
5980
5980
  console.log(lines.join("\n"));
5981
5981
  if (outputs.dnsAutoCreated && outputs.domain) {
5982
+ const providerNames = {
5983
+ route53: "AWS Route53",
5984
+ vercel: "Vercel DNS",
5985
+ cloudflare: "Cloudflare",
5986
+ manual: "Manual"
5987
+ };
5988
+ const providerDisplay = providerNames[outputs.dnsProvider ?? "route53"] ?? "your DNS provider";
5982
5989
  clack8.note(
5983
- `DNS records (DKIM, SPF, DMARC) were automatically created in Route53 for ${pc10.cyan(
5990
+ `DNS records (DKIM, SPF, DMARC) were automatically created in ${providerDisplay} for ${pc10.cyan(
5984
5991
  outputs.domain
5985
5992
  )}.
5986
5993
 
@@ -22099,6 +22106,7 @@ ${pc28.yellow(pc28.bold("Configuration Warnings:"))}`);
22099
22106
  tableName: outputs.tableName,
22100
22107
  dnsRecords: void 0,
22101
22108
  dnsAutoCreated,
22109
+ dnsProvider,
22102
22110
  domain: outputs.domain,
22103
22111
  mailFromDomain: outputs.mailFromDomain
22104
22112
  });