create-whop-kit 0.9.5 → 0.9.7
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-create.js +5 -5
- package/package.json +1 -1
package/dist/cli-create.js
CHANGED
|
@@ -522,11 +522,11 @@ var init_default = defineCommand({
|
|
|
522
522
|
const result = await p5.select({
|
|
523
523
|
message: "Which database?",
|
|
524
524
|
options: [
|
|
525
|
-
{ value: "neon", label: "Neon
|
|
526
|
-
{ value: "
|
|
527
|
-
{ value: "
|
|
528
|
-
{ value: "manual", label: "I have a connection string"
|
|
529
|
-
{ value: "later", label: "Configure later"
|
|
525
|
+
{ value: "neon", label: "Neon (recommended)" },
|
|
526
|
+
{ value: "supabase", label: "Supabase" },
|
|
527
|
+
{ value: "prisma-postgres", label: "Prisma Postgres" },
|
|
528
|
+
{ value: "manual", label: "I have a connection string" },
|
|
529
|
+
{ value: "later", label: "Configure later" }
|
|
530
530
|
]
|
|
531
531
|
});
|
|
532
532
|
if (isCancelled(result)) {
|