create-better-fullstack 2.0.2 → 2.1.0
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/{add-handler-BPAZM8Zo.mjs → add-handler-BjTmOwEN.mjs} +11 -9
- package/dist/addons-setup-CSmj5ClW.mjs +6 -0
- package/dist/{addons-setup-HSghQS7c.mjs → addons-setup-uSvqHagW.mjs} +4 -83
- package/dist/{bts-config-Bg1Qea9Y.mjs → bts-config-InNcw1aJ.mjs} +90 -68
- package/dist/cli.mjs +2 -2
- package/dist/doctor-Bm9qvkya.mjs +281 -0
- package/dist/errors-ns_o2OKg.mjs +86 -0
- package/dist/generated-checks-CUhFFfVo.mjs +91 -0
- package/dist/index.d.mts +100 -41
- package/dist/index.mjs +10 -6
- package/dist/{install-dependencies-D6-GO3BZ.mjs → install-dependencies-CDjTNvIV.mjs} +126 -49
- package/dist/{mcp-58r70ZcL.mjs → mcp-BaLHDRdC.mjs} +1 -1
- package/dist/mcp-entry.mjs +601 -137
- package/dist/render-title-zvyKC1ej.mjs +34 -0
- package/dist/{run-DQlymC4z.mjs → run-Cqy-n1iT.mjs} +586 -654
- package/dist/run-DYWSKowD.mjs +10 -0
- package/dist/templates-B351F1yX.mjs +489 -0
- package/package.json +7 -6
- package/dist/addons-setup-CV5uZyhH.mjs +0 -5
- package/dist/run-QRBymn-p.mjs +0 -7
- /package/dist/{update-deps-CLebIM70.mjs → update-deps-D5OG0KmJ.mjs} +0 -0
package/dist/index.d.mts
CHANGED
|
@@ -8,6 +8,21 @@ import { EMBEDDED_TEMPLATES, GeneratorOptions, GeneratorResult, TEMPLATE_COUNT,
|
|
|
8
8
|
|
|
9
9
|
import * as import__better_fullstack_types from "@better-fullstack/types";
|
|
10
10
|
//#endregion
|
|
11
|
+
//#region src/helpers/core/install-dependencies.d.ts
|
|
12
|
+
/**
|
|
13
|
+
* Result of a post-scaffold setup step (dependency install, native build, db setup).
|
|
14
|
+
* Steps still log their own errors, but no longer swallow failure silently — callers
|
|
15
|
+
* collect these so the CLI reports an accurate final status instead of always
|
|
16
|
+
* printing "Project created successfully" on top of a broken install.
|
|
17
|
+
*/
|
|
18
|
+
interface SetupStepResult {
|
|
19
|
+
/** Human-readable step name, e.g. "Install dependencies". */
|
|
20
|
+
step: string;
|
|
21
|
+
success: boolean;
|
|
22
|
+
/** Present when success is false. */
|
|
23
|
+
errorMessage?: string;
|
|
24
|
+
}
|
|
25
|
+
//#endregion
|
|
11
26
|
//#region src/helpers/core/add-handler.d.ts
|
|
12
27
|
interface AddResult {
|
|
13
28
|
success: boolean;
|
|
@@ -22,11 +37,13 @@ declare const router: {
|
|
|
22
37
|
create: _orpc_server0.Procedure<_orpc_server0.MergedInitialContext<Record<never, never>, Record<never, never>, Record<never, never>>, Record<never, never>, z.ZodTuple<[z.ZodOptional<z.ZodString>, z.ZodObject<{
|
|
23
38
|
template: z.ZodOptional<z.ZodEnum<{
|
|
24
39
|
none: "none";
|
|
25
|
-
uniwind: "uniwind";
|
|
26
40
|
mern: "mern";
|
|
27
41
|
pern: "pern";
|
|
28
42
|
t3: "t3";
|
|
43
|
+
uniwind: "uniwind";
|
|
29
44
|
}>>;
|
|
45
|
+
fromHistory: z.ZodOptional<z.ZodNumber>;
|
|
46
|
+
config: z.ZodOptional<z.ZodString>;
|
|
30
47
|
yes: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
31
48
|
yolo: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
32
49
|
part: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -101,8 +118,8 @@ declare const router: {
|
|
|
101
118
|
uppy: "uppy";
|
|
102
119
|
}>>;
|
|
103
120
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
104
|
-
effect: "effect";
|
|
105
121
|
none: "none";
|
|
122
|
+
effect: "effect";
|
|
106
123
|
"effect-full": "effect-full";
|
|
107
124
|
}>>;
|
|
108
125
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -217,6 +234,7 @@ declare const router: {
|
|
|
217
234
|
strapi: "strapi";
|
|
218
235
|
tinacms: "tinacms";
|
|
219
236
|
directus: "directus";
|
|
237
|
+
keystatic: "keystatic";
|
|
220
238
|
}>>;
|
|
221
239
|
caching: z.ZodOptional<z.ZodEnum<{
|
|
222
240
|
none: "none";
|
|
@@ -229,6 +247,7 @@ declare const router: {
|
|
|
229
247
|
}>>;
|
|
230
248
|
i18n: z.ZodOptional<z.ZodEnum<{
|
|
231
249
|
none: "none";
|
|
250
|
+
paraglide: "paraglide";
|
|
232
251
|
i18next: "i18next";
|
|
233
252
|
"next-intl": "next-intl";
|
|
234
253
|
}>>;
|
|
@@ -237,8 +256,16 @@ declare const router: {
|
|
|
237
256
|
meilisearch: "meilisearch";
|
|
238
257
|
typesense: "typesense";
|
|
239
258
|
elasticsearch: "elasticsearch";
|
|
259
|
+
opensearch: "opensearch";
|
|
240
260
|
algolia: "algolia";
|
|
241
261
|
}>>;
|
|
262
|
+
vectorDb: z.ZodOptional<z.ZodEnum<{
|
|
263
|
+
none: "none";
|
|
264
|
+
pgvector: "pgvector";
|
|
265
|
+
qdrant: "qdrant";
|
|
266
|
+
chroma: "chroma";
|
|
267
|
+
pinecone: "pinecone";
|
|
268
|
+
}>>;
|
|
242
269
|
fileStorage: z.ZodOptional<z.ZodEnum<{
|
|
243
270
|
none: "none";
|
|
244
271
|
s3: "s3";
|
|
@@ -252,9 +279,9 @@ declare const router: {
|
|
|
252
279
|
}>>;
|
|
253
280
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
254
281
|
none: "none";
|
|
282
|
+
uniwind: "uniwind";
|
|
255
283
|
tamagui: "tamagui";
|
|
256
284
|
"gluestack-ui": "gluestack-ui";
|
|
257
|
-
uniwind: "uniwind";
|
|
258
285
|
unistyles: "unistyles";
|
|
259
286
|
}>>;
|
|
260
287
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -319,6 +346,7 @@ declare const router: {
|
|
|
319
346
|
mcp: "mcp";
|
|
320
347
|
skills: "skills";
|
|
321
348
|
turborepo: "turborepo";
|
|
349
|
+
nx: "nx";
|
|
322
350
|
fumadocs: "fumadocs";
|
|
323
351
|
ultracite: "ultracite";
|
|
324
352
|
oxlint: "oxlint";
|
|
@@ -333,11 +361,13 @@ declare const router: {
|
|
|
333
361
|
"tanstack-db": "tanstack-db";
|
|
334
362
|
"tanstack-pacer": "tanstack-pacer";
|
|
335
363
|
"backend-utils": "backend-utils";
|
|
364
|
+
devcontainer: "devcontainer";
|
|
336
365
|
"docker-compose": "docker-compose";
|
|
366
|
+
"github-actions": "github-actions";
|
|
337
367
|
}>>>;
|
|
338
368
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
339
|
-
ai: "ai";
|
|
340
369
|
none: "none";
|
|
370
|
+
ai: "ai";
|
|
341
371
|
"chat-sdk": "chat-sdk";
|
|
342
372
|
"tanstack-showcase": "tanstack-showcase";
|
|
343
373
|
}>>>;
|
|
@@ -393,6 +423,8 @@ declare const router: {
|
|
|
393
423
|
"ts-rest": "ts-rest";
|
|
394
424
|
garph: "garph";
|
|
395
425
|
"graphql-yoga": "graphql-yoga";
|
|
426
|
+
"apollo-server": "apollo-server";
|
|
427
|
+
openapi: "openapi";
|
|
396
428
|
}>>;
|
|
397
429
|
cssFramework: z.ZodOptional<z.ZodEnum<{
|
|
398
430
|
none: "none";
|
|
@@ -484,8 +516,8 @@ declare const router: {
|
|
|
484
516
|
"geist-mono": "geist-mono";
|
|
485
517
|
}>>;
|
|
486
518
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
487
|
-
default: "default";
|
|
488
519
|
none: "none";
|
|
520
|
+
default: "default";
|
|
489
521
|
small: "small";
|
|
490
522
|
medium: "medium";
|
|
491
523
|
large: "large";
|
|
@@ -513,10 +545,10 @@ declare const router: {
|
|
|
513
545
|
vercel: "vercel";
|
|
514
546
|
}>>;
|
|
515
547
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
516
|
-
error: "error";
|
|
517
548
|
merge: "merge";
|
|
518
549
|
overwrite: "overwrite";
|
|
519
550
|
increment: "increment";
|
|
551
|
+
error: "error";
|
|
520
552
|
}>>;
|
|
521
553
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
522
554
|
disableAnalytics: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -549,12 +581,12 @@ declare const router: {
|
|
|
549
581
|
ratatui: "ratatui";
|
|
550
582
|
}>>;
|
|
551
583
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
552
|
-
config: "config";
|
|
553
584
|
none: "none";
|
|
554
585
|
serde: "serde";
|
|
555
586
|
uuid: "uuid";
|
|
556
587
|
chrono: "chrono";
|
|
557
588
|
reqwest: "reqwest";
|
|
589
|
+
config: "config";
|
|
558
590
|
dashmap: "dashmap";
|
|
559
591
|
"parking-lot": "parking-lot";
|
|
560
592
|
secrecy: "secrecy";
|
|
@@ -969,8 +1001,8 @@ declare const router: {
|
|
|
969
1001
|
}>>;
|
|
970
1002
|
elixirLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
971
1003
|
none: "none";
|
|
972
|
-
broadway: "broadway";
|
|
973
1004
|
nx: "nx";
|
|
1005
|
+
broadway: "broadway";
|
|
974
1006
|
}>>>;
|
|
975
1007
|
aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
976
1008
|
none: "none";
|
|
@@ -990,7 +1022,7 @@ declare const router: {
|
|
|
990
1022
|
backend: "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self";
|
|
991
1023
|
runtime: "none" | "bun" | "node" | "workers";
|
|
992
1024
|
frontend: ("none" | "tanstack-router" | "react-router" | "react-vite" | "tanstack-start" | "next" | "vinext" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "solid-start" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
|
|
993
|
-
addons: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "backend-utils" | "docker-compose")[];
|
|
1025
|
+
addons: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "nx" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "backend-utils" | "devcontainer" | "docker-compose" | "github-actions")[];
|
|
994
1026
|
examples: ("ai" | "none" | "chat-sdk" | "tanstack-showcase")[];
|
|
995
1027
|
auth: "none" | "better-auth" | "better-auth-organizations" | "go-better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0" | "workos" | "kinde";
|
|
996
1028
|
payments: "none" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "dodo";
|
|
@@ -999,7 +1031,7 @@ declare const router: {
|
|
|
999
1031
|
versionChannel: "stable" | "latest" | "beta";
|
|
1000
1032
|
install: boolean;
|
|
1001
1033
|
dbSetup: "none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker";
|
|
1002
|
-
api: "none" | "trpc" | "orpc" | "ts-rest" | "garph" | "graphql-yoga";
|
|
1034
|
+
api: "none" | "trpc" | "orpc" | "ts-rest" | "garph" | "graphql-yoga" | "apollo-server" | "openapi";
|
|
1003
1035
|
webDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel";
|
|
1004
1036
|
serverDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel";
|
|
1005
1037
|
ai: "none" | "langgraph" | "google-adk" | "langchain" | "llamaindex" | "vercel-ai" | "mastra" | "voltagent" | "openai-agents" | "modelfusion" | "tanstack-ai" | "ai-cli";
|
|
@@ -1019,11 +1051,12 @@ declare const router: {
|
|
|
1019
1051
|
observability: "none" | "opentelemetry" | "sentry" | "grafana" | "datadog" | "axiom" | "betterstack";
|
|
1020
1052
|
featureFlags: "none" | "growthbook" | "posthog" | "launchdarkly" | "flagsmith" | "unleash";
|
|
1021
1053
|
analytics: "none" | "plausible" | "umami";
|
|
1022
|
-
cms: "none" | "payload" | "sanity" | "strapi" | "tinacms" | "directus";
|
|
1054
|
+
cms: "none" | "payload" | "sanity" | "strapi" | "tinacms" | "directus" | "keystatic";
|
|
1023
1055
|
caching: "none" | "upstash-redis";
|
|
1024
1056
|
rateLimit: "none" | "arcjet" | "upstash-ratelimit";
|
|
1025
|
-
i18n: "none" | "i18next" | "next-intl";
|
|
1026
|
-
search: "none" | "meilisearch" | "typesense" | "elasticsearch" | "algolia";
|
|
1057
|
+
i18n: "none" | "paraglide" | "i18next" | "next-intl";
|
|
1058
|
+
search: "none" | "meilisearch" | "typesense" | "elasticsearch" | "opensearch" | "algolia";
|
|
1059
|
+
vectorDb: "none" | "pgvector" | "qdrant" | "chroma" | "pinecone";
|
|
1027
1060
|
fileStorage: "none" | "s3" | "r2" | "cloudinary";
|
|
1028
1061
|
mobileNavigation: "none" | "expo-router" | "react-navigation";
|
|
1029
1062
|
mobileUI: "none" | "uniwind" | "tamagui" | "gluestack-ui" | "unistyles";
|
|
@@ -1037,7 +1070,7 @@ declare const router: {
|
|
|
1037
1070
|
rustOrm: "none" | "sea-orm" | "sqlx" | "diesel";
|
|
1038
1071
|
rustApi: "none" | "tonic" | "async-graphql";
|
|
1039
1072
|
rustCli: "none" | "clap" | "ratatui";
|
|
1040
|
-
rustLibraries: ("
|
|
1073
|
+
rustLibraries: ("config" | "none" | "serde" | "uuid" | "chrono" | "reqwest" | "dashmap" | "parking-lot" | "secrecy" | "tokio-util" | "utoipa" | "validator" | "jsonwebtoken" | "argon2" | "tokio-test" | "mockall" | "proptest" | "insta")[];
|
|
1041
1074
|
rustLogging: "none" | "tracing" | "env-logger";
|
|
1042
1075
|
rustErrorHandling: "none" | "anyhow-thiserror" | "eyre";
|
|
1043
1076
|
rustCaching: "none" | "redis" | "moka";
|
|
@@ -1106,7 +1139,7 @@ declare const router: {
|
|
|
1106
1139
|
elixirTesting: "none" | "ex_unit" | "mox" | "bypass" | "wallaby";
|
|
1107
1140
|
elixirQuality: "none" | "credo" | "dialyxir" | "sobelow";
|
|
1108
1141
|
elixirDeploy: "none" | "docker" | "fly" | "gigalixir" | "mix-release";
|
|
1109
|
-
elixirLibraries: ("none" | "
|
|
1142
|
+
elixirLibraries: ("none" | "nx" | "broadway")[];
|
|
1110
1143
|
aiDocs: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
|
|
1111
1144
|
astroIntegration?: "none" | "svelte" | "solid" | "react" | "vue" | undefined;
|
|
1112
1145
|
shadcnBase?: "radix" | "base" | undefined;
|
|
@@ -1118,7 +1151,7 @@ declare const router: {
|
|
|
1118
1151
|
shadcnRadius?: "default" | "none" | "small" | "medium" | "large" | undefined;
|
|
1119
1152
|
stackParts?: {
|
|
1120
1153
|
id: string;
|
|
1121
|
-
role: "api" | "runtime" | "backend" | "database" | "orm" | "dbSetup" | "auth" | "payments" | "email" | "fileUpload" | "logging" | "observability" | "stateManagement" | "forms" | "validation" | "testing" | "realtime" | "jobQueue" | "caching" | "rateLimit" | "i18n" | "search" | "fileStorage" | "animation" | "cms" | "featureFlags" | "analytics" | "codeQuality" | "documentation" | "examples" | "ai" | "effect" | "
|
|
1154
|
+
role: "api" | "runtime" | "backend" | "database" | "orm" | "dbSetup" | "auth" | "payments" | "email" | "fileUpload" | "logging" | "observability" | "stateManagement" | "forms" | "validation" | "testing" | "realtime" | "jobQueue" | "caching" | "rateLimit" | "i18n" | "search" | "vectorDb" | "fileStorage" | "animation" | "cms" | "featureFlags" | "analytics" | "codeQuality" | "documentation" | "examples" | "ai" | "effect" | "config" | "frontend" | "mobile" | "deploy" | "navigation" | "ui" | "css" | "storage" | "appPlatform" | "dataFetching" | "workspaceTooling" | "buildTool" | "cli" | "errorHandling" | "httpClient" | "libraries" | "templating";
|
|
1122
1155
|
toolId: string;
|
|
1123
1156
|
ecosystem: "typescript" | "react-native" | "rust" | "python" | "go" | "java" | "elixir" | "dotnet" | "universal";
|
|
1124
1157
|
source: "selected" | "defaulted" | "provided" | "legacy" | "adjusted";
|
|
@@ -1137,6 +1170,7 @@ declare const router: {
|
|
|
1137
1170
|
fileCount: number;
|
|
1138
1171
|
directoryCount: number;
|
|
1139
1172
|
files: string[];
|
|
1173
|
+
setupFailures?: undefined;
|
|
1140
1174
|
error?: undefined;
|
|
1141
1175
|
} | {
|
|
1142
1176
|
success: boolean;
|
|
@@ -1150,7 +1184,7 @@ declare const router: {
|
|
|
1150
1184
|
backend: "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self";
|
|
1151
1185
|
runtime: "none" | "bun" | "node" | "workers";
|
|
1152
1186
|
frontend: ("none" | "tanstack-router" | "react-router" | "react-vite" | "tanstack-start" | "next" | "vinext" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "solid-start" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
|
|
1153
|
-
addons: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "backend-utils" | "docker-compose")[];
|
|
1187
|
+
addons: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "nx" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "backend-utils" | "devcontainer" | "docker-compose" | "github-actions")[];
|
|
1154
1188
|
examples: ("ai" | "none" | "chat-sdk" | "tanstack-showcase")[];
|
|
1155
1189
|
auth: "none" | "better-auth" | "better-auth-organizations" | "go-better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0" | "workos" | "kinde";
|
|
1156
1190
|
payments: "none" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "dodo";
|
|
@@ -1159,7 +1193,7 @@ declare const router: {
|
|
|
1159
1193
|
versionChannel: "stable" | "latest" | "beta";
|
|
1160
1194
|
install: boolean;
|
|
1161
1195
|
dbSetup: "none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker";
|
|
1162
|
-
api: "none" | "trpc" | "orpc" | "ts-rest" | "garph" | "graphql-yoga";
|
|
1196
|
+
api: "none" | "trpc" | "orpc" | "ts-rest" | "garph" | "graphql-yoga" | "apollo-server" | "openapi";
|
|
1163
1197
|
webDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel";
|
|
1164
1198
|
serverDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel";
|
|
1165
1199
|
ai: "none" | "langgraph" | "google-adk" | "langchain" | "llamaindex" | "vercel-ai" | "mastra" | "voltagent" | "openai-agents" | "modelfusion" | "tanstack-ai" | "ai-cli";
|
|
@@ -1179,11 +1213,12 @@ declare const router: {
|
|
|
1179
1213
|
observability: "none" | "opentelemetry" | "sentry" | "grafana" | "datadog" | "axiom" | "betterstack";
|
|
1180
1214
|
featureFlags: "none" | "growthbook" | "posthog" | "launchdarkly" | "flagsmith" | "unleash";
|
|
1181
1215
|
analytics: "none" | "plausible" | "umami";
|
|
1182
|
-
cms: "none" | "payload" | "sanity" | "strapi" | "tinacms" | "directus";
|
|
1216
|
+
cms: "none" | "payload" | "sanity" | "strapi" | "tinacms" | "directus" | "keystatic";
|
|
1183
1217
|
caching: "none" | "upstash-redis";
|
|
1184
1218
|
rateLimit: "none" | "arcjet" | "upstash-ratelimit";
|
|
1185
|
-
i18n: "none" | "i18next" | "next-intl";
|
|
1186
|
-
search: "none" | "meilisearch" | "typesense" | "elasticsearch" | "algolia";
|
|
1219
|
+
i18n: "none" | "paraglide" | "i18next" | "next-intl";
|
|
1220
|
+
search: "none" | "meilisearch" | "typesense" | "elasticsearch" | "opensearch" | "algolia";
|
|
1221
|
+
vectorDb: "none" | "pgvector" | "qdrant" | "chroma" | "pinecone";
|
|
1187
1222
|
fileStorage: "none" | "s3" | "r2" | "cloudinary";
|
|
1188
1223
|
mobileNavigation: "none" | "expo-router" | "react-navigation";
|
|
1189
1224
|
mobileUI: "none" | "uniwind" | "tamagui" | "gluestack-ui" | "unistyles";
|
|
@@ -1197,7 +1232,7 @@ declare const router: {
|
|
|
1197
1232
|
rustOrm: "none" | "sea-orm" | "sqlx" | "diesel";
|
|
1198
1233
|
rustApi: "none" | "tonic" | "async-graphql";
|
|
1199
1234
|
rustCli: "none" | "clap" | "ratatui";
|
|
1200
|
-
rustLibraries: ("
|
|
1235
|
+
rustLibraries: ("config" | "none" | "serde" | "uuid" | "chrono" | "reqwest" | "dashmap" | "parking-lot" | "secrecy" | "tokio-util" | "utoipa" | "validator" | "jsonwebtoken" | "argon2" | "tokio-test" | "mockall" | "proptest" | "insta")[];
|
|
1201
1236
|
rustLogging: "none" | "tracing" | "env-logger";
|
|
1202
1237
|
rustErrorHandling: "none" | "anyhow-thiserror" | "eyre";
|
|
1203
1238
|
rustCaching: "none" | "redis" | "moka";
|
|
@@ -1266,7 +1301,7 @@ declare const router: {
|
|
|
1266
1301
|
elixirTesting: "none" | "ex_unit" | "mox" | "bypass" | "wallaby";
|
|
1267
1302
|
elixirQuality: "none" | "credo" | "dialyxir" | "sobelow";
|
|
1268
1303
|
elixirDeploy: "none" | "docker" | "fly" | "gigalixir" | "mix-release";
|
|
1269
|
-
elixirLibraries: ("none" | "
|
|
1304
|
+
elixirLibraries: ("none" | "nx" | "broadway")[];
|
|
1270
1305
|
aiDocs: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
|
|
1271
1306
|
astroIntegration?: "none" | "svelte" | "solid" | "react" | "vue" | undefined;
|
|
1272
1307
|
shadcnBase?: "radix" | "base" | undefined;
|
|
@@ -1278,7 +1313,7 @@ declare const router: {
|
|
|
1278
1313
|
shadcnRadius?: "default" | "none" | "small" | "medium" | "large" | undefined;
|
|
1279
1314
|
stackParts?: {
|
|
1280
1315
|
id: string;
|
|
1281
|
-
role: "api" | "runtime" | "backend" | "database" | "orm" | "dbSetup" | "auth" | "payments" | "email" | "fileUpload" | "logging" | "observability" | "stateManagement" | "forms" | "validation" | "testing" | "realtime" | "jobQueue" | "caching" | "rateLimit" | "i18n" | "search" | "fileStorage" | "animation" | "cms" | "featureFlags" | "analytics" | "codeQuality" | "documentation" | "examples" | "ai" | "effect" | "
|
|
1316
|
+
role: "api" | "runtime" | "backend" | "database" | "orm" | "dbSetup" | "auth" | "payments" | "email" | "fileUpload" | "logging" | "observability" | "stateManagement" | "forms" | "validation" | "testing" | "realtime" | "jobQueue" | "caching" | "rateLimit" | "i18n" | "search" | "vectorDb" | "fileStorage" | "animation" | "cms" | "featureFlags" | "analytics" | "codeQuality" | "documentation" | "examples" | "ai" | "effect" | "config" | "frontend" | "mobile" | "deploy" | "navigation" | "ui" | "css" | "storage" | "appPlatform" | "dataFetching" | "workspaceTooling" | "buildTool" | "cli" | "errorHandling" | "httpClient" | "libraries" | "templating";
|
|
1282
1317
|
toolId: string;
|
|
1283
1318
|
ecosystem: "typescript" | "react-native" | "rust" | "python" | "go" | "java" | "elixir" | "dotnet" | "universal";
|
|
1284
1319
|
source: "selected" | "defaulted" | "provided" | "legacy" | "adjusted";
|
|
@@ -1293,6 +1328,7 @@ declare const router: {
|
|
|
1293
1328
|
elapsedTimeMs: number;
|
|
1294
1329
|
projectDirectory: string;
|
|
1295
1330
|
relativePath: string;
|
|
1331
|
+
setupFailures: SetupStepResult[];
|
|
1296
1332
|
dryRun?: undefined;
|
|
1297
1333
|
fileCount?: undefined;
|
|
1298
1334
|
directoryCount?: undefined;
|
|
@@ -1311,6 +1347,7 @@ declare const router: {
|
|
|
1311
1347
|
fileCount?: undefined;
|
|
1312
1348
|
directoryCount?: undefined;
|
|
1313
1349
|
files?: undefined;
|
|
1350
|
+
setupFailures?: undefined;
|
|
1314
1351
|
} | undefined, {
|
|
1315
1352
|
success: boolean;
|
|
1316
1353
|
projectConfig: {
|
|
@@ -1323,7 +1360,7 @@ declare const router: {
|
|
|
1323
1360
|
backend: "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self";
|
|
1324
1361
|
runtime: "none" | "bun" | "node" | "workers";
|
|
1325
1362
|
frontend: ("none" | "tanstack-router" | "react-router" | "react-vite" | "tanstack-start" | "next" | "vinext" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "solid-start" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
|
|
1326
|
-
addons: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "backend-utils" | "docker-compose")[];
|
|
1363
|
+
addons: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "nx" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "backend-utils" | "devcontainer" | "docker-compose" | "github-actions")[];
|
|
1327
1364
|
examples: ("ai" | "none" | "chat-sdk" | "tanstack-showcase")[];
|
|
1328
1365
|
auth: "none" | "better-auth" | "better-auth-organizations" | "go-better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0" | "workos" | "kinde";
|
|
1329
1366
|
payments: "none" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "dodo";
|
|
@@ -1332,7 +1369,7 @@ declare const router: {
|
|
|
1332
1369
|
versionChannel: "stable" | "latest" | "beta";
|
|
1333
1370
|
install: boolean;
|
|
1334
1371
|
dbSetup: "none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker";
|
|
1335
|
-
api: "none" | "trpc" | "orpc" | "ts-rest" | "garph" | "graphql-yoga";
|
|
1372
|
+
api: "none" | "trpc" | "orpc" | "ts-rest" | "garph" | "graphql-yoga" | "apollo-server" | "openapi";
|
|
1336
1373
|
webDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel";
|
|
1337
1374
|
serverDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel";
|
|
1338
1375
|
ai: "none" | "langgraph" | "google-adk" | "langchain" | "llamaindex" | "vercel-ai" | "mastra" | "voltagent" | "openai-agents" | "modelfusion" | "tanstack-ai" | "ai-cli";
|
|
@@ -1352,11 +1389,12 @@ declare const router: {
|
|
|
1352
1389
|
observability: "none" | "opentelemetry" | "sentry" | "grafana" | "datadog" | "axiom" | "betterstack";
|
|
1353
1390
|
featureFlags: "none" | "growthbook" | "posthog" | "launchdarkly" | "flagsmith" | "unleash";
|
|
1354
1391
|
analytics: "none" | "plausible" | "umami";
|
|
1355
|
-
cms: "none" | "payload" | "sanity" | "strapi" | "tinacms" | "directus";
|
|
1392
|
+
cms: "none" | "payload" | "sanity" | "strapi" | "tinacms" | "directus" | "keystatic";
|
|
1356
1393
|
caching: "none" | "upstash-redis";
|
|
1357
1394
|
rateLimit: "none" | "arcjet" | "upstash-ratelimit";
|
|
1358
|
-
i18n: "none" | "i18next" | "next-intl";
|
|
1359
|
-
search: "none" | "meilisearch" | "typesense" | "elasticsearch" | "algolia";
|
|
1395
|
+
i18n: "none" | "paraglide" | "i18next" | "next-intl";
|
|
1396
|
+
search: "none" | "meilisearch" | "typesense" | "elasticsearch" | "opensearch" | "algolia";
|
|
1397
|
+
vectorDb: "none" | "pgvector" | "qdrant" | "chroma" | "pinecone";
|
|
1360
1398
|
fileStorage: "none" | "s3" | "r2" | "cloudinary";
|
|
1361
1399
|
mobileNavigation: "none" | "expo-router" | "react-navigation";
|
|
1362
1400
|
mobileUI: "none" | "uniwind" | "tamagui" | "gluestack-ui" | "unistyles";
|
|
@@ -1370,7 +1408,7 @@ declare const router: {
|
|
|
1370
1408
|
rustOrm: "none" | "sea-orm" | "sqlx" | "diesel";
|
|
1371
1409
|
rustApi: "none" | "tonic" | "async-graphql";
|
|
1372
1410
|
rustCli: "none" | "clap" | "ratatui";
|
|
1373
|
-
rustLibraries: ("
|
|
1411
|
+
rustLibraries: ("config" | "none" | "serde" | "uuid" | "chrono" | "reqwest" | "dashmap" | "parking-lot" | "secrecy" | "tokio-util" | "utoipa" | "validator" | "jsonwebtoken" | "argon2" | "tokio-test" | "mockall" | "proptest" | "insta")[];
|
|
1374
1412
|
rustLogging: "none" | "tracing" | "env-logger";
|
|
1375
1413
|
rustErrorHandling: "none" | "anyhow-thiserror" | "eyre";
|
|
1376
1414
|
rustCaching: "none" | "redis" | "moka";
|
|
@@ -1439,7 +1477,7 @@ declare const router: {
|
|
|
1439
1477
|
elixirTesting: "none" | "ex_unit" | "mox" | "bypass" | "wallaby";
|
|
1440
1478
|
elixirQuality: "none" | "credo" | "dialyxir" | "sobelow";
|
|
1441
1479
|
elixirDeploy: "none" | "docker" | "fly" | "gigalixir" | "mix-release";
|
|
1442
|
-
elixirLibraries: ("none" | "
|
|
1480
|
+
elixirLibraries: ("none" | "nx" | "broadway")[];
|
|
1443
1481
|
aiDocs: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
|
|
1444
1482
|
astroIntegration?: "none" | "svelte" | "solid" | "react" | "vue" | undefined;
|
|
1445
1483
|
shadcnBase?: "radix" | "base" | undefined;
|
|
@@ -1451,7 +1489,7 @@ declare const router: {
|
|
|
1451
1489
|
shadcnRadius?: "default" | "none" | "small" | "medium" | "large" | undefined;
|
|
1452
1490
|
stackParts?: {
|
|
1453
1491
|
id: string;
|
|
1454
|
-
role: "api" | "runtime" | "backend" | "database" | "orm" | "dbSetup" | "auth" | "payments" | "email" | "fileUpload" | "logging" | "observability" | "stateManagement" | "forms" | "validation" | "testing" | "realtime" | "jobQueue" | "caching" | "rateLimit" | "i18n" | "search" | "fileStorage" | "animation" | "cms" | "featureFlags" | "analytics" | "codeQuality" | "documentation" | "examples" | "ai" | "effect" | "
|
|
1492
|
+
role: "api" | "runtime" | "backend" | "database" | "orm" | "dbSetup" | "auth" | "payments" | "email" | "fileUpload" | "logging" | "observability" | "stateManagement" | "forms" | "validation" | "testing" | "realtime" | "jobQueue" | "caching" | "rateLimit" | "i18n" | "search" | "vectorDb" | "fileStorage" | "animation" | "cms" | "featureFlags" | "analytics" | "codeQuality" | "documentation" | "examples" | "ai" | "effect" | "config" | "frontend" | "mobile" | "deploy" | "navigation" | "ui" | "css" | "storage" | "appPlatform" | "dataFetching" | "workspaceTooling" | "buildTool" | "cli" | "errorHandling" | "httpClient" | "libraries" | "templating";
|
|
1455
1493
|
toolId: string;
|
|
1456
1494
|
ecosystem: "typescript" | "react-native" | "rust" | "python" | "go" | "java" | "elixir" | "dotnet" | "universal";
|
|
1457
1495
|
source: "selected" | "defaulted" | "provided" | "legacy" | "adjusted";
|
|
@@ -1470,6 +1508,7 @@ declare const router: {
|
|
|
1470
1508
|
fileCount: number;
|
|
1471
1509
|
directoryCount: number;
|
|
1472
1510
|
files: string[];
|
|
1511
|
+
setupFailures?: undefined;
|
|
1473
1512
|
error?: undefined;
|
|
1474
1513
|
} | {
|
|
1475
1514
|
success: boolean;
|
|
@@ -1483,7 +1522,7 @@ declare const router: {
|
|
|
1483
1522
|
backend: "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self";
|
|
1484
1523
|
runtime: "none" | "bun" | "node" | "workers";
|
|
1485
1524
|
frontend: ("none" | "tanstack-router" | "react-router" | "react-vite" | "tanstack-start" | "next" | "vinext" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "solid-start" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
|
|
1486
|
-
addons: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "backend-utils" | "docker-compose")[];
|
|
1525
|
+
addons: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "nx" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "backend-utils" | "devcontainer" | "docker-compose" | "github-actions")[];
|
|
1487
1526
|
examples: ("ai" | "none" | "chat-sdk" | "tanstack-showcase")[];
|
|
1488
1527
|
auth: "none" | "better-auth" | "better-auth-organizations" | "go-better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0" | "workos" | "kinde";
|
|
1489
1528
|
payments: "none" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "dodo";
|
|
@@ -1492,7 +1531,7 @@ declare const router: {
|
|
|
1492
1531
|
versionChannel: "stable" | "latest" | "beta";
|
|
1493
1532
|
install: boolean;
|
|
1494
1533
|
dbSetup: "none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker";
|
|
1495
|
-
api: "none" | "trpc" | "orpc" | "ts-rest" | "garph" | "graphql-yoga";
|
|
1534
|
+
api: "none" | "trpc" | "orpc" | "ts-rest" | "garph" | "graphql-yoga" | "apollo-server" | "openapi";
|
|
1496
1535
|
webDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel";
|
|
1497
1536
|
serverDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel";
|
|
1498
1537
|
ai: "none" | "langgraph" | "google-adk" | "langchain" | "llamaindex" | "vercel-ai" | "mastra" | "voltagent" | "openai-agents" | "modelfusion" | "tanstack-ai" | "ai-cli";
|
|
@@ -1512,11 +1551,12 @@ declare const router: {
|
|
|
1512
1551
|
observability: "none" | "opentelemetry" | "sentry" | "grafana" | "datadog" | "axiom" | "betterstack";
|
|
1513
1552
|
featureFlags: "none" | "growthbook" | "posthog" | "launchdarkly" | "flagsmith" | "unleash";
|
|
1514
1553
|
analytics: "none" | "plausible" | "umami";
|
|
1515
|
-
cms: "none" | "payload" | "sanity" | "strapi" | "tinacms" | "directus";
|
|
1554
|
+
cms: "none" | "payload" | "sanity" | "strapi" | "tinacms" | "directus" | "keystatic";
|
|
1516
1555
|
caching: "none" | "upstash-redis";
|
|
1517
1556
|
rateLimit: "none" | "arcjet" | "upstash-ratelimit";
|
|
1518
|
-
i18n: "none" | "i18next" | "next-intl";
|
|
1519
|
-
search: "none" | "meilisearch" | "typesense" | "elasticsearch" | "algolia";
|
|
1557
|
+
i18n: "none" | "paraglide" | "i18next" | "next-intl";
|
|
1558
|
+
search: "none" | "meilisearch" | "typesense" | "elasticsearch" | "opensearch" | "algolia";
|
|
1559
|
+
vectorDb: "none" | "pgvector" | "qdrant" | "chroma" | "pinecone";
|
|
1520
1560
|
fileStorage: "none" | "s3" | "r2" | "cloudinary";
|
|
1521
1561
|
mobileNavigation: "none" | "expo-router" | "react-navigation";
|
|
1522
1562
|
mobileUI: "none" | "uniwind" | "tamagui" | "gluestack-ui" | "unistyles";
|
|
@@ -1530,7 +1570,7 @@ declare const router: {
|
|
|
1530
1570
|
rustOrm: "none" | "sea-orm" | "sqlx" | "diesel";
|
|
1531
1571
|
rustApi: "none" | "tonic" | "async-graphql";
|
|
1532
1572
|
rustCli: "none" | "clap" | "ratatui";
|
|
1533
|
-
rustLibraries: ("
|
|
1573
|
+
rustLibraries: ("config" | "none" | "serde" | "uuid" | "chrono" | "reqwest" | "dashmap" | "parking-lot" | "secrecy" | "tokio-util" | "utoipa" | "validator" | "jsonwebtoken" | "argon2" | "tokio-test" | "mockall" | "proptest" | "insta")[];
|
|
1534
1574
|
rustLogging: "none" | "tracing" | "env-logger";
|
|
1535
1575
|
rustErrorHandling: "none" | "anyhow-thiserror" | "eyre";
|
|
1536
1576
|
rustCaching: "none" | "redis" | "moka";
|
|
@@ -1599,7 +1639,7 @@ declare const router: {
|
|
|
1599
1639
|
elixirTesting: "none" | "ex_unit" | "mox" | "bypass" | "wallaby";
|
|
1600
1640
|
elixirQuality: "none" | "credo" | "dialyxir" | "sobelow";
|
|
1601
1641
|
elixirDeploy: "none" | "docker" | "fly" | "gigalixir" | "mix-release";
|
|
1602
|
-
elixirLibraries: ("none" | "
|
|
1642
|
+
elixirLibraries: ("none" | "nx" | "broadway")[];
|
|
1603
1643
|
aiDocs: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
|
|
1604
1644
|
astroIntegration?: "none" | "svelte" | "solid" | "react" | "vue" | undefined;
|
|
1605
1645
|
shadcnBase?: "radix" | "base" | undefined;
|
|
@@ -1611,7 +1651,7 @@ declare const router: {
|
|
|
1611
1651
|
shadcnRadius?: "default" | "none" | "small" | "medium" | "large" | undefined;
|
|
1612
1652
|
stackParts?: {
|
|
1613
1653
|
id: string;
|
|
1614
|
-
role: "api" | "runtime" | "backend" | "database" | "orm" | "dbSetup" | "auth" | "payments" | "email" | "fileUpload" | "logging" | "observability" | "stateManagement" | "forms" | "validation" | "testing" | "realtime" | "jobQueue" | "caching" | "rateLimit" | "i18n" | "search" | "fileStorage" | "animation" | "cms" | "featureFlags" | "analytics" | "codeQuality" | "documentation" | "examples" | "ai" | "effect" | "
|
|
1654
|
+
role: "api" | "runtime" | "backend" | "database" | "orm" | "dbSetup" | "auth" | "payments" | "email" | "fileUpload" | "logging" | "observability" | "stateManagement" | "forms" | "validation" | "testing" | "realtime" | "jobQueue" | "caching" | "rateLimit" | "i18n" | "search" | "vectorDb" | "fileStorage" | "animation" | "cms" | "featureFlags" | "analytics" | "codeQuality" | "documentation" | "examples" | "ai" | "effect" | "config" | "frontend" | "mobile" | "deploy" | "navigation" | "ui" | "css" | "storage" | "appPlatform" | "dataFetching" | "workspaceTooling" | "buildTool" | "cli" | "errorHandling" | "httpClient" | "libraries" | "templating";
|
|
1615
1655
|
toolId: string;
|
|
1616
1656
|
ecosystem: "typescript" | "react-native" | "rust" | "python" | "go" | "java" | "elixir" | "dotnet" | "universal";
|
|
1617
1657
|
source: "selected" | "defaulted" | "provided" | "legacy" | "adjusted";
|
|
@@ -1626,6 +1666,7 @@ declare const router: {
|
|
|
1626
1666
|
elapsedTimeMs: number;
|
|
1627
1667
|
projectDirectory: string;
|
|
1628
1668
|
relativePath: string;
|
|
1669
|
+
setupFailures: SetupStepResult[];
|
|
1629
1670
|
dryRun?: undefined;
|
|
1630
1671
|
fileCount?: undefined;
|
|
1631
1672
|
directoryCount?: undefined;
|
|
@@ -1644,6 +1685,7 @@ declare const router: {
|
|
|
1644
1685
|
fileCount?: undefined;
|
|
1645
1686
|
directoryCount?: undefined;
|
|
1646
1687
|
files?: undefined;
|
|
1688
|
+
setupFailures?: undefined;
|
|
1647
1689
|
} | undefined>, _orpc_server0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
1648
1690
|
sponsors: _orpc_server0.Procedure<_orpc_server0.MergedInitialContext<Record<never, never>, Record<never, never>, Record<never, never>>, Record<never, never>, _orpc_server0.Schema<unknown, unknown>, _orpc_server0.Schema<void, void>, _orpc_server0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
1649
1691
|
docs: _orpc_server0.Procedure<_orpc_server0.MergedInitialContext<Record<never, never>, Record<never, never>, Record<never, never>>, Record<never, never>, _orpc_server0.Schema<unknown, unknown>, _orpc_server0.Schema<void, void>, _orpc_server0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
@@ -1661,6 +1703,7 @@ declare const router: {
|
|
|
1661
1703
|
mcp: "mcp";
|
|
1662
1704
|
skills: "skills";
|
|
1663
1705
|
turborepo: "turborepo";
|
|
1706
|
+
nx: "nx";
|
|
1664
1707
|
fumadocs: "fumadocs";
|
|
1665
1708
|
ultracite: "ultracite";
|
|
1666
1709
|
oxlint: "oxlint";
|
|
@@ -1675,7 +1718,9 @@ declare const router: {
|
|
|
1675
1718
|
"tanstack-db": "tanstack-db";
|
|
1676
1719
|
"tanstack-pacer": "tanstack-pacer";
|
|
1677
1720
|
"backend-utils": "backend-utils";
|
|
1721
|
+
devcontainer: "devcontainer";
|
|
1678
1722
|
"docker-compose": "docker-compose";
|
|
1723
|
+
"github-actions": "github-actions";
|
|
1679
1724
|
}>>>;
|
|
1680
1725
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
1681
1726
|
none: "none";
|
|
@@ -1713,6 +1758,13 @@ declare const router: {
|
|
|
1713
1758
|
clear: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1714
1759
|
json: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1715
1760
|
}, z.core.$strip>, _orpc_server0.Schema<void, void>, _orpc_server0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
1761
|
+
telemetry: _orpc_server0.Procedure<_orpc_server0.MergedInitialContext<Record<never, never>, Record<never, never>, Record<never, never>>, Record<never, never>, z.ZodTuple<[z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1762
|
+
status: "status";
|
|
1763
|
+
enable: "enable";
|
|
1764
|
+
disable: "disable";
|
|
1765
|
+
}>>>, z.ZodObject<{
|
|
1766
|
+
json: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1767
|
+
}, z.core.$strip>], null>, _orpc_server0.Schema<void, void>, _orpc_server0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
1716
1768
|
"update-deps": _orpc_server0.Procedure<_orpc_server0.MergedInitialContext<Record<never, never>, Record<never, never>, Record<never, never>>, Record<never, never>, z.ZodObject<{
|
|
1717
1769
|
check: z.ZodDefault<z.ZodBoolean>;
|
|
1718
1770
|
patch: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -1721,6 +1773,10 @@ declare const router: {
|
|
|
1721
1773
|
"list-ecosystems": z.ZodDefault<z.ZodBoolean>;
|
|
1722
1774
|
}, z.core.$strip>, _orpc_server0.Schema<void, void>, _orpc_server0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
1723
1775
|
mcp: _orpc_server0.Procedure<_orpc_server0.MergedInitialContext<Record<never, never>, Record<never, never>, Record<never, never>>, Record<never, never>, _orpc_server0.Schema<unknown, unknown>, _orpc_server0.Schema<void, void>, _orpc_server0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
1776
|
+
doctor: _orpc_server0.Procedure<_orpc_server0.MergedInitialContext<Record<never, never>, Record<never, never>, Record<never, never>>, Record<never, never>, z.ZodTuple<[z.ZodOptional<z.ZodString>, z.ZodObject<{
|
|
1777
|
+
skipChecks: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1778
|
+
json: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1779
|
+
}, z.core.$strip>], null>, _orpc_server0.Schema<void, void>, _orpc_server0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
1724
1780
|
};
|
|
1725
1781
|
declare function createBtsCli(): trpc_cli0.TrpcCli;
|
|
1726
1782
|
/**
|
|
@@ -1754,6 +1810,9 @@ declare function history(options?: {
|
|
|
1754
1810
|
clear?: boolean;
|
|
1755
1811
|
json?: boolean;
|
|
1756
1812
|
}): Promise<void>;
|
|
1813
|
+
declare function telemetry(action?: "status" | "enable" | "disable", options?: {
|
|
1814
|
+
json?: boolean;
|
|
1815
|
+
}): Promise<void>;
|
|
1757
1816
|
//#endregion
|
|
1758
1817
|
//#region src/index.d.ts
|
|
1759
1818
|
/**
|
|
@@ -1854,4 +1913,4 @@ type ServerDeploy = import__better_fullstack_types.ServerDeploy;
|
|
|
1854
1913
|
type Template = import__better_fullstack_types.Template;
|
|
1855
1914
|
type UILibrary = import__better_fullstack_types.UILibrary;
|
|
1856
1915
|
type WebDeploy = import__better_fullstack_types.WebDeploy;
|
|
1857
|
-
export { type API, type AddInput, type AddResult, type Addons, type AiDocs, type Analytics, type Animation, type Auth, type Backend, type BetterTStackConfig, type CMS, type CSSFramework, type Caching, type CreateInput, type Database, type DatabaseSetup, type DirectoryConflict, EMBEDDED_TEMPLATES, type Ecosystem, type Effect, type ElixirApi, type ElixirAuth, type ElixirCaching, type ElixirDeploy, type ElixirEmail, type ElixirHttp, type ElixirJobs, type ElixirJson, type ElixirObservability, type ElixirOrm, type ElixirQuality, type ElixirRealtime, type ElixirTesting, type ElixirValidation, type ElixirWebFramework, type Examples, type Frontend, type GeneratorOptions, type GeneratorResult, type GoApi, type GoAuth, type GoCli, type GoLogging, type GoOrm, type GoWebFramework, type InitResult, type JavaAuth, type JavaBuildTool, type JavaLibraries, type JavaOrm, type JavaTestingLibraries, type JavaWebFramework, type Logging, type ORM, type PackageManager, type Payments, type PythonAi, type PythonOrm, type PythonQuality, type PythonTaskQueue, type PythonValidation, type PythonWebFramework, type Realtime, type Runtime, type RustApi, type RustCli, type RustFrontend, type RustLibraries, type RustLogging, type RustOrm, type RustWebFramework, type ServerDeploy, TEMPLATE_COUNT, type Template, type UILibrary, type VirtualDirectory, type VirtualFile, VirtualFileSystem, type VirtualFileTree, type VirtualNode, type WebDeploy, add, builder, create, createBtsCli, createVirtual, docs, generateVirtualProject, history, router, sponsors };
|
|
1916
|
+
export { type API, type AddInput, type AddResult, type Addons, type AiDocs, type Analytics, type Animation, type Auth, type Backend, type BetterTStackConfig, type CMS, type CSSFramework, type Caching, type CreateInput, type Database, type DatabaseSetup, type DirectoryConflict, EMBEDDED_TEMPLATES, type Ecosystem, type Effect, type ElixirApi, type ElixirAuth, type ElixirCaching, type ElixirDeploy, type ElixirEmail, type ElixirHttp, type ElixirJobs, type ElixirJson, type ElixirObservability, type ElixirOrm, type ElixirQuality, type ElixirRealtime, type ElixirTesting, type ElixirValidation, type ElixirWebFramework, type Examples, type Frontend, type GeneratorOptions, type GeneratorResult, type GoApi, type GoAuth, type GoCli, type GoLogging, type GoOrm, type GoWebFramework, type InitResult, type JavaAuth, type JavaBuildTool, type JavaLibraries, type JavaOrm, type JavaTestingLibraries, type JavaWebFramework, type Logging, type ORM, type PackageManager, type Payments, type PythonAi, type PythonOrm, type PythonQuality, type PythonTaskQueue, type PythonValidation, type PythonWebFramework, type Realtime, type Runtime, type RustApi, type RustCli, type RustFrontend, type RustLibraries, type RustLogging, type RustOrm, type RustWebFramework, type ServerDeploy, TEMPLATE_COUNT, type Template, type UILibrary, type VirtualDirectory, type VirtualFile, VirtualFileSystem, type VirtualFileTree, type VirtualNode, type WebDeploy, add, builder, create, createBtsCli, createVirtual, docs, generateVirtualProject, history, router, sponsors, telemetry };
|
package/dist/index.mjs
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import "./bts-config-
|
|
3
|
-
import { a as docs, c as sponsors, i as createBtsCli, n as builder, o as history, r as create, s as router, t as add } from "./run-
|
|
4
|
-
import "./
|
|
5
|
-
import "./
|
|
2
|
+
import "./bts-config-InNcw1aJ.mjs";
|
|
3
|
+
import { a as docs, c as sponsors, i as createBtsCli, l as telemetry, n as builder, o as history, r as create, s as router, t as add } from "./run-Cqy-n1iT.mjs";
|
|
4
|
+
import "./render-title-zvyKC1ej.mjs";
|
|
5
|
+
import "./errors-ns_o2OKg.mjs";
|
|
6
|
+
import "./addons-setup-uSvqHagW.mjs";
|
|
7
|
+
import "./install-dependencies-CDjTNvIV.mjs";
|
|
8
|
+
import "./generated-checks-CUhFFfVo.mjs";
|
|
6
9
|
import { EMBEDDED_TEMPLATES, TEMPLATE_COUNT, VirtualFileSystem, generateVirtualProject } from "@better-fullstack/template-generator";
|
|
7
10
|
|
|
8
11
|
//#region src/index.ts
|
|
@@ -93,6 +96,7 @@ async function createVirtual(options) {
|
|
|
93
96
|
rateLimit: options.rateLimit || "none",
|
|
94
97
|
i18n: options.i18n || "none",
|
|
95
98
|
search: options.search || "none",
|
|
99
|
+
vectorDb: options.vectorDb || "none",
|
|
96
100
|
fileStorage: options.fileStorage || "none",
|
|
97
101
|
rustWebFramework: options.rustWebFramework || "none",
|
|
98
102
|
rustFrontend: options.rustFrontend || "none",
|
|
@@ -169,7 +173,7 @@ async function createVirtual(options) {
|
|
|
169
173
|
elixirQuality: options.elixirQuality || (options.ecosystem === "elixir" ? "credo" : "none"),
|
|
170
174
|
elixirDeploy: options.elixirDeploy || "none",
|
|
171
175
|
elixirLibraries: options.elixirLibraries || [],
|
|
172
|
-
aiDocs: options.aiDocs || ["claude-md"]
|
|
176
|
+
aiDocs: options.aiDocs || ["claude-md", "agents-md"]
|
|
173
177
|
};
|
|
174
178
|
if (options.stackParts) config.stackParts = options.stackParts;
|
|
175
179
|
const { generateVirtualProject: generate, EMBEDDED_TEMPLATES: EMBEDDED_TEMPLATES$2 } = await import("@better-fullstack/template-generator");
|
|
@@ -194,4 +198,4 @@ async function createVirtual(options) {
|
|
|
194
198
|
}
|
|
195
199
|
|
|
196
200
|
//#endregion
|
|
197
|
-
export { EMBEDDED_TEMPLATES, TEMPLATE_COUNT, VirtualFileSystem, add, builder, create, createBtsCli, createVirtual, docs, generateVirtualProject, history, router, sponsors };
|
|
201
|
+
export { EMBEDDED_TEMPLATES, TEMPLATE_COUNT, VirtualFileSystem, add, builder, create, createBtsCli, createVirtual, docs, generateVirtualProject, history, router, sponsors, telemetry };
|