create-kofi-stack 2.1.23 → 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.
- package/dist/index.js +7 -0
- package/package.json +2 -2
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.
|
|
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": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"typecheck": "tsc --noEmit"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"kofi-stack-template-generator": "^2.1.
|
|
19
|
+
"kofi-stack-template-generator": "^2.1.22",
|
|
20
20
|
"kofi-stack-types": "^2.2.0",
|
|
21
21
|
"@clack/prompts": "^0.7.0",
|
|
22
22
|
"commander": "^12.0.0",
|