create-better-fullstack 1.0.5 → 1.1.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 +13 -1
- package/dist/index.mjs +1 -1
- package/dist/{src-B1JV3DqF.mjs → src-uKym6_H1.mjs} +1082 -86
- package/package.json +4 -4
package/dist/cli.mjs
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -162,6 +162,16 @@ declare const router: {
|
|
|
162
162
|
none: "none";
|
|
163
163
|
opentelemetry: "opentelemetry";
|
|
164
164
|
}>>;
|
|
165
|
+
cms: z.ZodOptional<z.ZodEnum<{
|
|
166
|
+
none: "none";
|
|
167
|
+
payload: "payload";
|
|
168
|
+
sanity: "sanity";
|
|
169
|
+
strapi: "strapi";
|
|
170
|
+
}>>;
|
|
171
|
+
caching: z.ZodOptional<z.ZodEnum<{
|
|
172
|
+
none: "none";
|
|
173
|
+
"upstash-redis": "upstash-redis";
|
|
174
|
+
}>>;
|
|
165
175
|
frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
166
176
|
none: "none";
|
|
167
177
|
"tanstack-router": "tanstack-router";
|
|
@@ -510,7 +520,9 @@ type Animation = import__better_fullstack_types.Animation;
|
|
|
510
520
|
type Auth = import__better_fullstack_types.Auth;
|
|
511
521
|
type Backend = import__better_fullstack_types.Backend;
|
|
512
522
|
type BetterTStackConfig = import__better_fullstack_types.BetterTStackConfig;
|
|
523
|
+
type CMS = import__better_fullstack_types.CMS;
|
|
513
524
|
type CSSFramework = import__better_fullstack_types.CSSFramework;
|
|
525
|
+
type Caching = import__better_fullstack_types.Caching;
|
|
514
526
|
type CreateInput = import__better_fullstack_types.CreateInput;
|
|
515
527
|
type Database = import__better_fullstack_types.Database;
|
|
516
528
|
type DatabaseSetup = import__better_fullstack_types.DatabaseSetup;
|
|
@@ -536,4 +548,4 @@ type ServerDeploy = import__better_fullstack_types.ServerDeploy;
|
|
|
536
548
|
type Template = import__better_fullstack_types.Template;
|
|
537
549
|
type UILibrary = import__better_fullstack_types.UILibrary;
|
|
538
550
|
type WebDeploy = import__better_fullstack_types.WebDeploy;
|
|
539
|
-
export { type API, type Addons, type Animation, type Auth, type Backend, type BetterTStackConfig, type CSSFramework, type CreateInput, type Database, type DatabaseSetup, type DirectoryConflict, EMBEDDED_TEMPLATES, type Ecosystem, type Effect, type Examples, type Frontend, type GeneratorOptions, type GeneratorResult, type InitResult, type Logging, type ORM, type PackageManager, type Payments, type Realtime, type Runtime, type RustApi, type RustCli, type RustFrontend, type RustLibraries, type RustOrm, type RustWebFramework, type ServerDeploy, TEMPLATE_COUNT, type Template, type UILibrary, type VirtualDirectory, type VirtualFile, VirtualFileSystem, type VirtualFileTree, type VirtualNode, type WebDeploy, builder, create, createBtsCli, createVirtual, docs, generateVirtualProject, router, sponsors };
|
|
551
|
+
export { type API, type Addons, 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 Examples, type Frontend, type GeneratorOptions, type GeneratorResult, type InitResult, type Logging, type ORM, type PackageManager, type Payments, type Realtime, type Runtime, type RustApi, type RustCli, type RustFrontend, type RustLibraries, type RustOrm, type RustWebFramework, type ServerDeploy, TEMPLATE_COUNT, type Template, type UILibrary, type VirtualDirectory, type VirtualFile, VirtualFileSystem, type VirtualFileTree, type VirtualNode, type WebDeploy, builder, create, createBtsCli, createVirtual, docs, generateVirtualProject, router, sponsors };
|
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-uKym6_H1.mjs";
|
|
3
3
|
|
|
4
4
|
export { EMBEDDED_TEMPLATES, TEMPLATE_COUNT, VirtualFileSystem, builder, create, createBtsCli, createVirtual, docs, generateVirtualProject, router, sponsors };
|