create-kofi-stack 2.1.24 → 2.1.25

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.
Files changed (2) hide show
  1. package/dist/index.js +7 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -666,6 +666,13 @@ async function setupResend(config, backendEnvPath) {
666
666
  RESEND_API_KEY: apiKey,
667
667
  RESEND_FROM_EMAIL: fromEmail
668
668
  });
669
+ if (config.marketingSite === "payload") {
670
+ const marketingEnvPath = path2.join(config.targetDir, "apps/marketing/.env.local");
671
+ await updateEnvWithSecrets(marketingEnvPath, {
672
+ RESEND_API_KEY: apiKey,
673
+ RESEND_FROM_EMAIL: fromEmail
674
+ });
675
+ }
669
676
  p2.log.success("Resend configured successfully!");
670
677
  }
671
678
  async function setupPayload(config) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-kofi-stack",
3
- "version": "2.1.24",
3
+ "version": "2.1.25",
4
4
  "description": "Scaffold opinionated full-stack projects with Next.js, Convex, Better-Auth, and more",
5
5
  "type": "module",
6
6
  "bin": {