create-better-fullstack 1.8.1 → 2.0.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.
package/dist/index.d.mts CHANGED
@@ -29,8 +29,10 @@ declare const router: {
29
29
  }>>;
30
30
  yes: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
31
31
  yolo: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
32
+ part: z.ZodOptional<z.ZodArray<z.ZodString>>;
32
33
  verbose: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
33
34
  dryRun: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
35
+ verify: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
34
36
  ecosystem: z.ZodOptional<z.ZodEnum<{
35
37
  typescript: "typescript";
36
38
  "react-native": "react-native";
@@ -95,8 +97,8 @@ declare const router: {
95
97
  uppy: "uppy";
96
98
  }>>;
97
99
  effect: z.ZodOptional<z.ZodEnum<{
98
- none: "none";
99
100
  effect: "effect";
101
+ none: "none";
100
102
  "effect-full": "effect-full";
101
103
  }>>;
102
104
  stateManagement: z.ZodOptional<z.ZodEnum<{
@@ -321,8 +323,8 @@ declare const router: {
321
323
  "docker-compose": "docker-compose";
322
324
  }>>>;
323
325
  examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
324
- none: "none";
325
326
  ai: "ai";
327
+ none: "none";
326
328
  "chat-sdk": "chat-sdk";
327
329
  "tanstack-showcase": "tanstack-showcase";
328
330
  }>>>;
@@ -387,6 +389,7 @@ declare const router: {
387
389
  "postcss-only": "postcss-only";
388
390
  }>>;
389
391
  uiLibrary: z.ZodOptional<z.ZodEnum<{
392
+ mui: "mui";
390
393
  none: "none";
391
394
  "shadcn-ui": "shadcn-ui";
392
395
  "shadcn-svelte": "shadcn-svelte";
@@ -397,7 +400,6 @@ declare const router: {
397
400
  "chakra-ui": "chakra-ui";
398
401
  nextui: "nextui";
399
402
  mantine: "mantine";
400
- mui: "mui";
401
403
  antd: "antd";
402
404
  "base-ui": "base-ui";
403
405
  "ark-ui": "ark-ui";
@@ -494,10 +496,10 @@ declare const router: {
494
496
  vercel: "vercel";
495
497
  }>>;
496
498
  directoryConflict: z.ZodOptional<z.ZodEnum<{
499
+ error: "error";
497
500
  merge: "merge";
498
501
  overwrite: "overwrite";
499
502
  increment: "increment";
500
- error: "error";
501
503
  }>>;
502
504
  renderTitle: z.ZodOptional<z.ZodBoolean>;
503
505
  disableAnalytics: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
@@ -631,8 +633,8 @@ declare const router: {
631
633
  chi: "chi";
632
634
  }>>;
633
635
  goOrm: z.ZodOptional<z.ZodEnum<{
634
- none: "none";
635
636
  gorm: "gorm";
637
+ none: "none";
636
638
  sqlc: "sqlc";
637
639
  ent: "ent";
638
640
  }>>;
@@ -826,7 +828,7 @@ declare const router: {
826
828
  testing: "none" | "vitest" | "playwright" | "vitest-playwright" | "jest" | "cypress";
827
829
  email: "none" | "react-email" | "resend" | "nodemailer" | "postmark" | "sendgrid" | "aws-ses" | "mailgun" | "plunk";
828
830
  cssFramework: "none" | "tailwind" | "scss" | "less" | "postcss-only";
829
- uiLibrary: "none" | "shadcn-ui" | "shadcn-svelte" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "mui" | "antd" | "base-ui" | "ark-ui" | "react-aria";
831
+ uiLibrary: "none" | "mui" | "shadcn-ui" | "shadcn-svelte" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "antd" | "base-ui" | "ark-ui" | "react-aria";
830
832
  validation: "none" | "zod" | "valibot" | "arktype" | "typebox" | "typia" | "runtypes" | "effect-schema";
831
833
  realtime: "none" | "socket-io" | "partykit" | "ably" | "pusher" | "liveblocks" | "yjs";
832
834
  jobQueue: "none" | "bullmq" | "trigger-dev" | "inngest" | "temporal";
@@ -903,6 +905,17 @@ declare const router: {
903
905
  shadcnBaseColor?: "neutral" | "stone" | "zinc" | "gray" | undefined;
904
906
  shadcnFont?: "inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono" | undefined;
905
907
  shadcnRadius?: "default" | "none" | "small" | "medium" | "large" | undefined;
908
+ stackParts?: {
909
+ id: string;
910
+ role: "api" | "runtime" | "backend" | "database" | "orm" | "auth" | "payments" | "email" | "logging" | "observability" | "stateManagement" | "forms" | "validation" | "testing" | "jobQueue" | "caching" | "i18n" | "search" | "fileStorage" | "cms" | "featureFlags" | "analytics" | "codeQuality" | "documentation" | "ai" | "frontend" | "css" | "ui" | "mobile" | "deploy" | "appPlatform";
911
+ toolId: string;
912
+ ecosystem: "typescript" | "react-native" | "rust" | "python" | "go" | "java" | "elixir" | "universal";
913
+ source: "selected" | "defaulted" | "provided" | "legacy" | "adjusted";
914
+ ownerPartId?: string | undefined;
915
+ providedByPartId?: string | undefined;
916
+ targetPath?: string | undefined;
917
+ settings?: Record<string, unknown> | undefined;
918
+ }[] | undefined;
906
919
  };
907
920
  reproducibleCommand: string;
908
921
  timeScaffolded: string;
@@ -945,7 +958,7 @@ declare const router: {
945
958
  testing: "none" | "vitest" | "playwright" | "vitest-playwright" | "jest" | "cypress";
946
959
  email: "none" | "react-email" | "resend" | "nodemailer" | "postmark" | "sendgrid" | "aws-ses" | "mailgun" | "plunk";
947
960
  cssFramework: "none" | "tailwind" | "scss" | "less" | "postcss-only";
948
- uiLibrary: "none" | "shadcn-ui" | "shadcn-svelte" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "mui" | "antd" | "base-ui" | "ark-ui" | "react-aria";
961
+ uiLibrary: "none" | "mui" | "shadcn-ui" | "shadcn-svelte" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "antd" | "base-ui" | "ark-ui" | "react-aria";
949
962
  validation: "none" | "zod" | "valibot" | "arktype" | "typebox" | "typia" | "runtypes" | "effect-schema";
950
963
  realtime: "none" | "socket-io" | "partykit" | "ably" | "pusher" | "liveblocks" | "yjs";
951
964
  jobQueue: "none" | "bullmq" | "trigger-dev" | "inngest" | "temporal";
@@ -1022,6 +1035,17 @@ declare const router: {
1022
1035
  shadcnBaseColor?: "neutral" | "stone" | "zinc" | "gray" | undefined;
1023
1036
  shadcnFont?: "inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono" | undefined;
1024
1037
  shadcnRadius?: "default" | "none" | "small" | "medium" | "large" | undefined;
1038
+ stackParts?: {
1039
+ id: string;
1040
+ role: "api" | "runtime" | "backend" | "database" | "orm" | "auth" | "payments" | "email" | "logging" | "observability" | "stateManagement" | "forms" | "validation" | "testing" | "jobQueue" | "caching" | "i18n" | "search" | "fileStorage" | "cms" | "featureFlags" | "analytics" | "codeQuality" | "documentation" | "ai" | "frontend" | "css" | "ui" | "mobile" | "deploy" | "appPlatform";
1041
+ toolId: string;
1042
+ ecosystem: "typescript" | "react-native" | "rust" | "python" | "go" | "java" | "elixir" | "universal";
1043
+ source: "selected" | "defaulted" | "provided" | "legacy" | "adjusted";
1044
+ ownerPartId?: string | undefined;
1045
+ providedByPartId?: string | undefined;
1046
+ targetPath?: string | undefined;
1047
+ settings?: Record<string, unknown> | undefined;
1048
+ }[] | undefined;
1025
1049
  };
1026
1050
  reproducibleCommand: string;
1027
1051
  timeScaffolded: string;
@@ -1077,7 +1101,7 @@ declare const router: {
1077
1101
  testing: "none" | "vitest" | "playwright" | "vitest-playwright" | "jest" | "cypress";
1078
1102
  email: "none" | "react-email" | "resend" | "nodemailer" | "postmark" | "sendgrid" | "aws-ses" | "mailgun" | "plunk";
1079
1103
  cssFramework: "none" | "tailwind" | "scss" | "less" | "postcss-only";
1080
- uiLibrary: "none" | "shadcn-ui" | "shadcn-svelte" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "mui" | "antd" | "base-ui" | "ark-ui" | "react-aria";
1104
+ uiLibrary: "none" | "mui" | "shadcn-ui" | "shadcn-svelte" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "antd" | "base-ui" | "ark-ui" | "react-aria";
1081
1105
  validation: "none" | "zod" | "valibot" | "arktype" | "typebox" | "typia" | "runtypes" | "effect-schema";
1082
1106
  realtime: "none" | "socket-io" | "partykit" | "ably" | "pusher" | "liveblocks" | "yjs";
1083
1107
  jobQueue: "none" | "bullmq" | "trigger-dev" | "inngest" | "temporal";
@@ -1154,6 +1178,17 @@ declare const router: {
1154
1178
  shadcnBaseColor?: "neutral" | "stone" | "zinc" | "gray" | undefined;
1155
1179
  shadcnFont?: "inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono" | undefined;
1156
1180
  shadcnRadius?: "default" | "none" | "small" | "medium" | "large" | undefined;
1181
+ stackParts?: {
1182
+ id: string;
1183
+ role: "api" | "runtime" | "backend" | "database" | "orm" | "auth" | "payments" | "email" | "logging" | "observability" | "stateManagement" | "forms" | "validation" | "testing" | "jobQueue" | "caching" | "i18n" | "search" | "fileStorage" | "cms" | "featureFlags" | "analytics" | "codeQuality" | "documentation" | "ai" | "frontend" | "css" | "ui" | "mobile" | "deploy" | "appPlatform";
1184
+ toolId: string;
1185
+ ecosystem: "typescript" | "react-native" | "rust" | "python" | "go" | "java" | "elixir" | "universal";
1186
+ source: "selected" | "defaulted" | "provided" | "legacy" | "adjusted";
1187
+ ownerPartId?: string | undefined;
1188
+ providedByPartId?: string | undefined;
1189
+ targetPath?: string | undefined;
1190
+ settings?: Record<string, unknown> | undefined;
1191
+ }[] | undefined;
1157
1192
  };
1158
1193
  reproducibleCommand: string;
1159
1194
  timeScaffolded: string;
@@ -1196,7 +1231,7 @@ declare const router: {
1196
1231
  testing: "none" | "vitest" | "playwright" | "vitest-playwright" | "jest" | "cypress";
1197
1232
  email: "none" | "react-email" | "resend" | "nodemailer" | "postmark" | "sendgrid" | "aws-ses" | "mailgun" | "plunk";
1198
1233
  cssFramework: "none" | "tailwind" | "scss" | "less" | "postcss-only";
1199
- uiLibrary: "none" | "shadcn-ui" | "shadcn-svelte" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "mui" | "antd" | "base-ui" | "ark-ui" | "react-aria";
1234
+ uiLibrary: "none" | "mui" | "shadcn-ui" | "shadcn-svelte" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "antd" | "base-ui" | "ark-ui" | "react-aria";
1200
1235
  validation: "none" | "zod" | "valibot" | "arktype" | "typebox" | "typia" | "runtypes" | "effect-schema";
1201
1236
  realtime: "none" | "socket-io" | "partykit" | "ably" | "pusher" | "liveblocks" | "yjs";
1202
1237
  jobQueue: "none" | "bullmq" | "trigger-dev" | "inngest" | "temporal";
@@ -1273,6 +1308,17 @@ declare const router: {
1273
1308
  shadcnBaseColor?: "neutral" | "stone" | "zinc" | "gray" | undefined;
1274
1309
  shadcnFont?: "inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono" | undefined;
1275
1310
  shadcnRadius?: "default" | "none" | "small" | "medium" | "large" | undefined;
1311
+ stackParts?: {
1312
+ id: string;
1313
+ role: "api" | "runtime" | "backend" | "database" | "orm" | "auth" | "payments" | "email" | "logging" | "observability" | "stateManagement" | "forms" | "validation" | "testing" | "jobQueue" | "caching" | "i18n" | "search" | "fileStorage" | "cms" | "featureFlags" | "analytics" | "codeQuality" | "documentation" | "ai" | "frontend" | "css" | "ui" | "mobile" | "deploy" | "appPlatform";
1314
+ toolId: string;
1315
+ ecosystem: "typescript" | "react-native" | "rust" | "python" | "go" | "java" | "elixir" | "universal";
1316
+ source: "selected" | "defaulted" | "provided" | "legacy" | "adjusted";
1317
+ ownerPartId?: string | undefined;
1318
+ providedByPartId?: string | undefined;
1319
+ targetPath?: string | undefined;
1320
+ settings?: Record<string, unknown> | undefined;
1321
+ }[] | undefined;
1276
1322
  };
1277
1323
  reproducibleCommand: string;
1278
1324
  timeScaffolded: string;