@adriankulik/create-fullstack-app 1.8.1 → 1.8.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/README.md
CHANGED
|
@@ -35,7 +35,7 @@ You will be prompted to choose a project name, your preferred frontend, and back
|
|
|
35
35
|
- Vue (v3.5.33)
|
|
36
36
|
- Svelte (v5.55.5)
|
|
37
37
|
- **Backend Options**:
|
|
38
|
-
- FastAPI (v0.
|
|
38
|
+
- FastAPI (v0.115.11)
|
|
39
39
|
- Flask (v3.1.3)
|
|
40
40
|
- .NET (v9.0.16)
|
|
41
41
|
- Node.js Express (v4.22.2)
|
package/cli/index.js
CHANGED
|
@@ -187,11 +187,12 @@ async function main() {
|
|
|
187
187
|
stdio: "inherit",
|
|
188
188
|
});
|
|
189
189
|
} catch (e) {
|
|
190
|
-
console.
|
|
191
|
-
pc.
|
|
192
|
-
"
|
|
190
|
+
console.error(
|
|
191
|
+
pc.red(
|
|
192
|
+
" Failed to set up Python virtual environment or install dependencies.",
|
|
193
193
|
),
|
|
194
194
|
);
|
|
195
|
+
process.exit(1);
|
|
195
196
|
}
|
|
196
197
|
} else if (backend === "dotnet") {
|
|
197
198
|
// Check if .NET 9+ SDK is available
|
package/package.json
CHANGED