create-better-fullstack 1.1.1 → 1.1.3
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 +7 -0
- package/dist/index.mjs +1 -1
- package/dist/{src-uKym6_H1.mjs → src-w8HBABQo.mjs} +10 -0
- package/package.json +3 -3
package/dist/cli.mjs
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -190,6 +190,13 @@ declare const router: {
|
|
|
190
190
|
redwood: "redwood";
|
|
191
191
|
fresh: "fresh";
|
|
192
192
|
}>>>;
|
|
193
|
+
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
194
|
+
none: "none";
|
|
195
|
+
svelte: "svelte";
|
|
196
|
+
solid: "solid";
|
|
197
|
+
react: "react";
|
|
198
|
+
vue: "vue";
|
|
199
|
+
}>>;
|
|
193
200
|
addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
194
201
|
none: "none";
|
|
195
202
|
pwa: "pwa";
|
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-w8HBABQo.mjs";
|
|
3
3
|
|
|
4
4
|
export { EMBEDDED_TEMPLATES, TEMPLATE_COUNT, VirtualFileSystem, builder, create, createBtsCli, createVirtual, docs, generateVirtualProject, router, sponsors };
|
|
@@ -3411,6 +3411,7 @@ function deriveProjectName(projectName, projectDirectory) {
|
|
|
3411
3411
|
}
|
|
3412
3412
|
function processFlags(options, projectName) {
|
|
3413
3413
|
const config = {};
|
|
3414
|
+
if (options.ecosystem) config.ecosystem = options.ecosystem;
|
|
3414
3415
|
if (options.api) config.api = options.api;
|
|
3415
3416
|
if (options.backend) config.backend = options.backend;
|
|
3416
3417
|
if (options.database) config.database = options.database;
|
|
@@ -3424,6 +3425,14 @@ function processFlags(options, projectName) {
|
|
|
3424
3425
|
if (options.realtime !== void 0) config.realtime = options.realtime;
|
|
3425
3426
|
if (options.jobQueue !== void 0) config.jobQueue = options.jobQueue;
|
|
3426
3427
|
if (options.animation !== void 0) config.animation = options.animation;
|
|
3428
|
+
if (options.ai !== void 0) config.ai = options.ai;
|
|
3429
|
+
if (options.forms !== void 0) config.forms = options.forms;
|
|
3430
|
+
if (options.testing !== void 0) config.testing = options.testing;
|
|
3431
|
+
if (options.logging !== void 0) config.logging = options.logging;
|
|
3432
|
+
if (options.observability !== void 0) config.observability = options.observability;
|
|
3433
|
+
if (options.cms !== void 0) config.cms = options.cms;
|
|
3434
|
+
if (options.caching !== void 0) config.caching = options.caching;
|
|
3435
|
+
if (options.fileUpload !== void 0) config.fileUpload = options.fileUpload;
|
|
3427
3436
|
if (options.git !== void 0) config.git = options.git;
|
|
3428
3437
|
if (options.install !== void 0) config.install = options.install;
|
|
3429
3438
|
if (options.runtime) config.runtime = options.runtime;
|
|
@@ -6145,6 +6154,7 @@ const router = os.router({
|
|
|
6145
6154
|
cms: types_exports.CMSSchema.optional().describe("Headless CMS solution"),
|
|
6146
6155
|
caching: types_exports.CachingSchema.optional().describe("Caching solution"),
|
|
6147
6156
|
frontend: z.array(types_exports.FrontendSchema).optional(),
|
|
6157
|
+
astroIntegration: types_exports.AstroIntegrationSchema.optional().describe("Astro UI framework integration (react, vue, svelte, solid)"),
|
|
6148
6158
|
addons: z.array(types_exports.AddonsSchema).optional(),
|
|
6149
6159
|
examples: z.array(types_exports.ExamplesSchema).optional(),
|
|
6150
6160
|
git: z.boolean().optional(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-better-fullstack",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
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",
|
|
@@ -72,8 +72,8 @@
|
|
|
72
72
|
"prepublishOnly": "npm run build"
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@better-fullstack/template-generator": "^1.1.
|
|
76
|
-
"@better-fullstack/types": "^1.1.
|
|
75
|
+
"@better-fullstack/template-generator": "^1.1.3",
|
|
76
|
+
"@better-fullstack/types": "^1.1.3",
|
|
77
77
|
"@clack/core": "^0.5.0",
|
|
78
78
|
"@clack/prompts": "^1.0.0-alpha.8",
|
|
79
79
|
"@orpc/server": "^1.13.0",
|