create-better-t-stack 2.27.0 → 2.27.1

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 +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3588,12 +3588,12 @@ async function setupPrismaPostgres(config) {
3588
3588
  const setupOptions = [{
3589
3589
  label: "Quick setup with create-db",
3590
3590
  value: "create-db",
3591
- hint: "Fastest, automated database creation"
3591
+ hint: "Fastest, automated database creation (no auth)"
3592
3592
  }];
3593
3593
  if (orm === "prisma") setupOptions.push({
3594
- label: "Custom setup with Prisma Console",
3594
+ label: "Custom setup with Prisma Init",
3595
3595
  value: "custom",
3596
- hint: "More control - use existing Prisma account"
3596
+ hint: "More control (requires auth)"
3597
3597
  });
3598
3598
  const setupMethod = await select({
3599
3599
  message: "Choose your Prisma setup method:",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-better-t-stack",
3
- "version": "2.27.0",
3
+ "version": "2.27.1",
4
4
  "description": "A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations",
5
5
  "type": "module",
6
6
  "license": "MIT",