create-better-fullstack 1.3.1 → 1.3.2
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 +5 -0
- package/dist/index.mjs +1 -1
- package/dist/{src-ZMYs861W.mjs → src-27fI6hd_.mjs} +1 -0
- package/package.json +3 -3
package/dist/cli.mjs
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -186,6 +186,11 @@ declare const router: {
|
|
|
186
186
|
none: "none";
|
|
187
187
|
"upstash-redis": "upstash-redis";
|
|
188
188
|
}>>;
|
|
189
|
+
search: z.ZodOptional<z.ZodEnum<{
|
|
190
|
+
none: "none";
|
|
191
|
+
meilisearch: "meilisearch";
|
|
192
|
+
typesense: "typesense";
|
|
193
|
+
}>>;
|
|
189
194
|
fileStorage: z.ZodOptional<z.ZodEnum<{
|
|
190
195
|
none: "none";
|
|
191
196
|
s3: "s3";
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { a as create, c as docs, d as sponsors, i as builder, l as generateVirtualProject, n as TEMPLATE_COUNT, o as createBtsCli, r as VirtualFileSystem, s as createVirtual, t as EMBEDDED_TEMPLATES, u as router } from "./src-
|
|
2
|
+
import { a as create, c as docs, d as sponsors, i as builder, l as generateVirtualProject, n as TEMPLATE_COUNT, o as createBtsCli, r as VirtualFileSystem, s as createVirtual, t as EMBEDDED_TEMPLATES, u as router } from "./src-27fI6hd_.mjs";
|
|
3
3
|
|
|
4
4
|
export { EMBEDDED_TEMPLATES, TEMPLATE_COUNT, VirtualFileSystem, builder, create, createBtsCli, createVirtual, docs, generateVirtualProject, router, sponsors };
|
|
@@ -7812,6 +7812,7 @@ const router = os.router({
|
|
|
7812
7812
|
analytics: types_exports.AnalyticsSchema.optional().describe("Privacy-focused analytics"),
|
|
7813
7813
|
cms: types_exports.CMSSchema.optional().describe("Headless CMS solution"),
|
|
7814
7814
|
caching: types_exports.CachingSchema.optional().describe("Caching solution"),
|
|
7815
|
+
search: types_exports.SearchSchema.optional().describe("Search engine solution"),
|
|
7815
7816
|
fileStorage: types_exports.FileStorageSchema.optional().describe("File storage solution (S3, R2)"),
|
|
7816
7817
|
frontend: z.array(types_exports.FrontendSchema).optional(),
|
|
7817
7818
|
astroIntegration: types_exports.AstroIntegrationSchema.optional().describe("Astro UI framework integration (react, vue, svelte, solid)"),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-better-fullstack",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "A CLI-first toolkit for building Full Stack applications. Skip the configuration. Ship the code.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"better-auth",
|
|
@@ -76,8 +76,8 @@
|
|
|
76
76
|
"prepublishOnly": "npm run build"
|
|
77
77
|
},
|
|
78
78
|
"dependencies": {
|
|
79
|
-
"@better-fullstack/template-generator": "^1.3.
|
|
80
|
-
"@better-fullstack/types": "^1.3.
|
|
79
|
+
"@better-fullstack/template-generator": "^1.3.2",
|
|
80
|
+
"@better-fullstack/types": "^1.3.2",
|
|
81
81
|
"@clack/core": "^0.5.0",
|
|
82
82
|
"@clack/prompts": "^1.0.0-alpha.8",
|
|
83
83
|
"@orpc/server": "^1.13.0",
|