@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.136.1)
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.log(
191
- pc.yellow(
192
- " Could not set up Python virtual environment automatically. Please set it up manually.",
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
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.8.1",
6
+ "version": "1.8.2",
7
7
  "description": "A CLI tool for scaffolding a full-stack web application with your choice of frontend and backend technologies.",
8
8
  "main": "cli/index.js",
9
9
  "bin": {
@@ -1,4 +1,4 @@
1
- fastapi==0.136.1
1
+ fastapi==0.115.11
2
2
  uvicorn==0.28.0
3
3
  pytest==8.1.1
4
4
  httpx==0.27.0
@@ -2,7 +2,7 @@
2
2
  set -e
3
3
  if [ -d "venv" ]; then
4
4
  source venv/bin/activate
5
- pytest
5
+ python -m pytest
6
6
  else
7
- pytest
7
+ python3 -m pytest
8
8
  fi
@@ -2,7 +2,7 @@
2
2
  set -e
3
3
  if [ -d "venv" ]; then
4
4
  source venv/bin/activate
5
- pytest
5
+ python -m pytest
6
6
  else
7
- pytest
7
+ python3 -m pytest
8
8
  fi