create-better-fullstack 1.4.7 → 1.4.8
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
CHANGED
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-Cu97R-IA.mjs";
|
|
3
3
|
|
|
4
4
|
export { EMBEDDED_TEMPLATES, TEMPLATE_COUNT, VirtualFileSystem, add, builder, create, createBtsCli, createVirtual, docs, generateVirtualProject, history, router, sponsors };
|
|
@@ -4504,6 +4504,11 @@ async function getPythonAiChoice(pythonAi) {
|
|
|
4504
4504
|
const response = await navigableMultiselect({
|
|
4505
4505
|
message: "Select Python AI/ML frameworks",
|
|
4506
4506
|
options: [
|
|
4507
|
+
{
|
|
4508
|
+
value: "none",
|
|
4509
|
+
label: "None",
|
|
4510
|
+
hint: "No AI/ML framework"
|
|
4511
|
+
},
|
|
4507
4512
|
{
|
|
4508
4513
|
value: "langchain",
|
|
4509
4514
|
label: "LangChain",
|
|
@@ -4539,6 +4544,7 @@ async function getPythonAiChoice(pythonAi) {
|
|
|
4539
4544
|
initialValues: []
|
|
4540
4545
|
});
|
|
4541
4546
|
if (isCancel$1(response)) return exitCancelled("Operation cancelled");
|
|
4547
|
+
if (response.includes("none")) return [];
|
|
4542
4548
|
return response;
|
|
4543
4549
|
}
|
|
4544
4550
|
async function getPythonTaskQueueChoice(pythonTaskQueue) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-better-fullstack",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.8",
|
|
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.4.
|
|
80
|
-
"@better-fullstack/types": "^1.4.
|
|
79
|
+
"@better-fullstack/template-generator": "^1.4.8",
|
|
80
|
+
"@better-fullstack/types": "^1.4.8",
|
|
81
81
|
"@clack/core": "^0.5.0",
|
|
82
82
|
"@clack/prompts": "^1.0.0-alpha.8",
|
|
83
83
|
"@orpc/server": "^1.13.0",
|