create-better-fullstack 1.4.0 → 1.4.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/cli.mjs +1 -1
- package/dist/index.d.mts +85 -2
- package/dist/index.mjs +1 -1
- package/dist/{src-p54ND5wJ.mjs → src-B5kV0Yns.mjs} +543 -465
- package/package.json +3 -3
package/dist/cli.mjs
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -216,6 +216,7 @@ declare const router: {
|
|
|
216
216
|
"native-unistyles": "native-unistyles";
|
|
217
217
|
svelte: "svelte";
|
|
218
218
|
solid: "solid";
|
|
219
|
+
"solid-start": "solid-start";
|
|
219
220
|
astro: "astro";
|
|
220
221
|
qwik: "qwik";
|
|
221
222
|
angular: "angular";
|
|
@@ -321,6 +322,74 @@ declare const router: {
|
|
|
321
322
|
"ark-ui": "ark-ui";
|
|
322
323
|
"react-aria": "react-aria";
|
|
323
324
|
}>>;
|
|
325
|
+
shadcnBase: z.ZodOptional<z.ZodEnum<{
|
|
326
|
+
radix: "radix";
|
|
327
|
+
base: "base";
|
|
328
|
+
}>>;
|
|
329
|
+
shadcnStyle: z.ZodOptional<z.ZodEnum<{
|
|
330
|
+
vega: "vega";
|
|
331
|
+
nova: "nova";
|
|
332
|
+
maia: "maia";
|
|
333
|
+
lyra: "lyra";
|
|
334
|
+
mira: "mira";
|
|
335
|
+
}>>;
|
|
336
|
+
shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
|
|
337
|
+
lucide: "lucide";
|
|
338
|
+
tabler: "tabler";
|
|
339
|
+
hugeicons: "hugeicons";
|
|
340
|
+
phosphor: "phosphor";
|
|
341
|
+
remixicon: "remixicon";
|
|
342
|
+
}>>;
|
|
343
|
+
shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
|
|
344
|
+
neutral: "neutral";
|
|
345
|
+
stone: "stone";
|
|
346
|
+
zinc: "zinc";
|
|
347
|
+
gray: "gray";
|
|
348
|
+
amber: "amber";
|
|
349
|
+
blue: "blue";
|
|
350
|
+
cyan: "cyan";
|
|
351
|
+
emerald: "emerald";
|
|
352
|
+
fuchsia: "fuchsia";
|
|
353
|
+
green: "green";
|
|
354
|
+
indigo: "indigo";
|
|
355
|
+
lime: "lime";
|
|
356
|
+
orange: "orange";
|
|
357
|
+
pink: "pink";
|
|
358
|
+
purple: "purple";
|
|
359
|
+
red: "red";
|
|
360
|
+
rose: "rose";
|
|
361
|
+
sky: "sky";
|
|
362
|
+
teal: "teal";
|
|
363
|
+
violet: "violet";
|
|
364
|
+
yellow: "yellow";
|
|
365
|
+
}>>;
|
|
366
|
+
shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
|
|
367
|
+
neutral: "neutral";
|
|
368
|
+
stone: "stone";
|
|
369
|
+
zinc: "zinc";
|
|
370
|
+
gray: "gray";
|
|
371
|
+
}>>;
|
|
372
|
+
shadcnFont: z.ZodOptional<z.ZodEnum<{
|
|
373
|
+
inter: "inter";
|
|
374
|
+
geist: "geist";
|
|
375
|
+
"noto-sans": "noto-sans";
|
|
376
|
+
"nunito-sans": "nunito-sans";
|
|
377
|
+
figtree: "figtree";
|
|
378
|
+
roboto: "roboto";
|
|
379
|
+
raleway: "raleway";
|
|
380
|
+
"dm-sans": "dm-sans";
|
|
381
|
+
"public-sans": "public-sans";
|
|
382
|
+
outfit: "outfit";
|
|
383
|
+
"jetbrains-mono": "jetbrains-mono";
|
|
384
|
+
"geist-mono": "geist-mono";
|
|
385
|
+
}>>;
|
|
386
|
+
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
387
|
+
none: "none";
|
|
388
|
+
default: "default";
|
|
389
|
+
small: "small";
|
|
390
|
+
medium: "medium";
|
|
391
|
+
large: "large";
|
|
392
|
+
}>>;
|
|
324
393
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
325
394
|
none: "none";
|
|
326
395
|
docker: "docker";
|
|
@@ -451,7 +520,7 @@ declare const router: {
|
|
|
451
520
|
orm: "none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize";
|
|
452
521
|
backend: "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self";
|
|
453
522
|
runtime: "none" | "bun" | "node" | "workers";
|
|
454
|
-
frontend: ("none" | "tanstack-router" | "react-router" | "tanstack-start" | "next" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
|
|
523
|
+
frontend: ("none" | "tanstack-router" | "react-router" | "tanstack-start" | "next" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "solid-start" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
|
|
455
524
|
addons: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook")[];
|
|
456
525
|
examples: ("ai" | "none" | "chat-sdk")[];
|
|
457
526
|
auth: "none" | "better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0";
|
|
@@ -503,6 +572,13 @@ declare const router: {
|
|
|
503
572
|
goLogging: "none" | "zap";
|
|
504
573
|
aiDocs: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
|
|
505
574
|
astroIntegration?: "none" | "svelte" | "solid" | "react" | "vue" | undefined;
|
|
575
|
+
shadcnBase?: "radix" | "base" | undefined;
|
|
576
|
+
shadcnStyle?: "vega" | "nova" | "maia" | "lyra" | "mira" | undefined;
|
|
577
|
+
shadcnIconLibrary?: "lucide" | "tabler" | "hugeicons" | "phosphor" | "remixicon" | undefined;
|
|
578
|
+
shadcnColorTheme?: "neutral" | "stone" | "zinc" | "gray" | "amber" | "blue" | "cyan" | "emerald" | "fuchsia" | "green" | "indigo" | "lime" | "orange" | "pink" | "purple" | "red" | "rose" | "sky" | "teal" | "violet" | "yellow" | undefined;
|
|
579
|
+
shadcnBaseColor?: "neutral" | "stone" | "zinc" | "gray" | undefined;
|
|
580
|
+
shadcnFont?: "inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono" | undefined;
|
|
581
|
+
shadcnRadius?: "default" | "none" | "small" | "medium" | "large" | undefined;
|
|
506
582
|
};
|
|
507
583
|
reproducibleCommand: string;
|
|
508
584
|
timeScaffolded: string;
|
|
@@ -530,7 +606,7 @@ declare const router: {
|
|
|
530
606
|
orm: "none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize";
|
|
531
607
|
backend: "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self";
|
|
532
608
|
runtime: "none" | "bun" | "node" | "workers";
|
|
533
|
-
frontend: ("none" | "tanstack-router" | "react-router" | "tanstack-start" | "next" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
|
|
609
|
+
frontend: ("none" | "tanstack-router" | "react-router" | "tanstack-start" | "next" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "solid-start" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
|
|
534
610
|
addons: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook")[];
|
|
535
611
|
examples: ("ai" | "none" | "chat-sdk")[];
|
|
536
612
|
auth: "none" | "better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0";
|
|
@@ -582,6 +658,13 @@ declare const router: {
|
|
|
582
658
|
goLogging: "none" | "zap";
|
|
583
659
|
aiDocs: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
|
|
584
660
|
astroIntegration?: "none" | "svelte" | "solid" | "react" | "vue" | undefined;
|
|
661
|
+
shadcnBase?: "radix" | "base" | undefined;
|
|
662
|
+
shadcnStyle?: "vega" | "nova" | "maia" | "lyra" | "mira" | undefined;
|
|
663
|
+
shadcnIconLibrary?: "lucide" | "tabler" | "hugeicons" | "phosphor" | "remixicon" | undefined;
|
|
664
|
+
shadcnColorTheme?: "neutral" | "stone" | "zinc" | "gray" | "amber" | "blue" | "cyan" | "emerald" | "fuchsia" | "green" | "indigo" | "lime" | "orange" | "pink" | "purple" | "red" | "rose" | "sky" | "teal" | "violet" | "yellow" | undefined;
|
|
665
|
+
shadcnBaseColor?: "neutral" | "stone" | "zinc" | "gray" | undefined;
|
|
666
|
+
shadcnFont?: "inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono" | undefined;
|
|
667
|
+
shadcnRadius?: "default" | "none" | "small" | "medium" | "large" | undefined;
|
|
585
668
|
};
|
|
586
669
|
reproducibleCommand: string;
|
|
587
670
|
timeScaffolded: string;
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { a as builder, c as createVirtual, d as history, f as router, i as add, l as docs, n as TEMPLATE_COUNT, o as create, p as sponsors, r as VirtualFileSystem, s as createBtsCli, t as EMBEDDED_TEMPLATES, u as generateVirtualProject } from "./src-
|
|
2
|
+
import { a as builder, c as createVirtual, d as history, f as router, i as add, l as docs, n as TEMPLATE_COUNT, o as create, p as sponsors, r as VirtualFileSystem, s as createBtsCli, t as EMBEDDED_TEMPLATES, u as generateVirtualProject } from "./src-B5kV0Yns.mjs";
|
|
3
3
|
|
|
4
4
|
export { EMBEDDED_TEMPLATES, TEMPLATE_COUNT, VirtualFileSystem, add, builder, create, createBtsCli, createVirtual, docs, generateVirtualProject, history, router, sponsors };
|