@adriankulik/create-fullstack-app 1.9.4 → 1.10.0
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 +7 -7
- package/cli/build-date.js +1 -1
- package/cli/index.js +7 -7
- package/package.json +5 -5
- package/templates/backend/dotnet/Tests/Tests.csproj +5 -5
- package/templates/backend/fastapi/requirements.txt +5 -5
- package/templates/backend/flask/requirements.txt +4 -4
- package/templates/backend/nodejs/package-lock.json +665 -654
- package/templates/backend/nodejs/package.json +10 -10
- package/templates/frontend/nextjs/package-lock.json +1816 -1441
- package/templates/frontend/nextjs/package.json +13 -13
- package/templates/frontend/svelte/package-lock.json +496 -962
- package/templates/frontend/svelte/package.json +14 -14
- package/templates/frontend/vue/package-lock.json +473 -542
- package/templates/frontend/vue/package.json +10 -10
package/README.md
CHANGED
|
@@ -30,15 +30,15 @@ You will be prompted to choose a project name, your preferred frontend, and back
|
|
|
30
30
|
## Features
|
|
31
31
|
|
|
32
32
|
- **Frontend Options**:
|
|
33
|
-
- Next.js (v16.2
|
|
34
|
-
- Angular (
|
|
35
|
-
- Vue (v3.5.
|
|
36
|
-
- Svelte (v5.
|
|
33
|
+
- Next.js (v16.3.2)
|
|
34
|
+
- Angular (v22.1.3) - _Configured with Zone.js_
|
|
35
|
+
- Vue (v3.5.41)
|
|
36
|
+
- Svelte (v5.56.10)
|
|
37
37
|
- **Backend Options**:
|
|
38
|
-
- FastAPI (v0.
|
|
38
|
+
- FastAPI (v0.141.1)
|
|
39
39
|
- Flask (v3.1.3)
|
|
40
|
-
- .NET (
|
|
41
|
-
- Node.js Express (
|
|
40
|
+
- .NET (v10.0.11)
|
|
41
|
+
- Node.js Express (v5.2.1)
|
|
42
42
|
- **Opinionated Defaults**: We bake in sensible, predefined choices (e.g., Angular uses `zone.js`, testing is unified under Playwright and framework-native test runners).
|
|
43
43
|
- **Unified Scripts**: `start.sh`, `test.sh`, and `lint.sh` available out of the box to manage both frontend and backend seamlessly.
|
|
44
44
|
- **CI/CD Ready**: Includes a pre-configured `.github/workflows/cli-e2e.yml` that tests both ends. _Tip: To enforce this, enable branch protection in your GitHub repository settings and require the "test" status check to pass._
|
package/cli/build-date.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
module.exports = '2026-08-21 21:
|
|
1
|
+
module.exports = '2026-08-21 21:48:13';
|
package/cli/index.js
CHANGED
|
@@ -47,19 +47,19 @@ async function main() {
|
|
|
47
47
|
name: "frontend",
|
|
48
48
|
message: "Which frontend framework would you like to use?",
|
|
49
49
|
choices: [
|
|
50
|
-
{ title: "Next.js (v16.2
|
|
50
|
+
{ title: "Next.js (v16.3.2)", value: "nextjs", description: "React framework" },
|
|
51
51
|
{
|
|
52
|
-
title: "Angular (
|
|
52
|
+
title: "Angular (v22.1.3)",
|
|
53
53
|
value: "angular",
|
|
54
54
|
description: "Enterprise-grade platform",
|
|
55
55
|
},
|
|
56
56
|
{
|
|
57
|
-
title: "Vue (v3.5.
|
|
57
|
+
title: "Vue (v3.5.41)",
|
|
58
58
|
value: "vue",
|
|
59
59
|
description: "Progressive JavaScript framework",
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
|
-
title: "Svelte (v5.
|
|
62
|
+
title: "Svelte (v5.56.10)",
|
|
63
63
|
value: "svelte",
|
|
64
64
|
description: "Cybernetically enhanced web apps",
|
|
65
65
|
},
|
|
@@ -75,7 +75,7 @@ async function main() {
|
|
|
75
75
|
message: "Which backend framework would you like to use?",
|
|
76
76
|
choices: [
|
|
77
77
|
{
|
|
78
|
-
title: "FastAPI (v0.
|
|
78
|
+
title: "FastAPI (v0.141.1)",
|
|
79
79
|
value: "fastapi",
|
|
80
80
|
description: "Modern, fast Python web framework",
|
|
81
81
|
},
|
|
@@ -85,12 +85,12 @@ async function main() {
|
|
|
85
85
|
description: "Lightweight Python WSGI web application framework",
|
|
86
86
|
},
|
|
87
87
|
{
|
|
88
|
-
title: ".NET (
|
|
88
|
+
title: ".NET (v10.0.11)",
|
|
89
89
|
value: "dotnet",
|
|
90
90
|
description: "Robust, C#, high-performance framework by Microsoft",
|
|
91
91
|
},
|
|
92
92
|
{
|
|
93
|
-
title: "Node.js Express (
|
|
93
|
+
title: "Node.js Express (v5.2.1)",
|
|
94
94
|
value: "nodejs",
|
|
95
95
|
description: "Minimalist web framework for Node.js",
|
|
96
96
|
},
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.10.0",
|
|
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": {
|
|
@@ -17,14 +17,14 @@
|
|
|
17
17
|
"test": "tests"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"fs-extra": "^11.
|
|
20
|
+
"fs-extra": "^11.4.0",
|
|
21
21
|
"picocolors": "^1.1.1",
|
|
22
22
|
"prompts": "^2.4.2"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@playwright/test": "^1.
|
|
26
|
-
"vitest": "^4.1.
|
|
27
|
-
"wait-on": "^9.0
|
|
25
|
+
"@playwright/test": "^1.62.1",
|
|
26
|
+
"vitest": "^4.1.11",
|
|
27
|
+
"wait-on": "^9.1.0"
|
|
28
28
|
},
|
|
29
29
|
"scripts": {
|
|
30
30
|
"prepublishOnly": "echo \"module.exports = '$(date -u +\"%Y-%m-%d %H:%M:%S\")';\" > cli/build-date.js",
|
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
</PropertyGroup>
|
|
11
11
|
|
|
12
12
|
<ItemGroup>
|
|
13
|
-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="
|
|
14
|
-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="
|
|
15
|
-
<PackageReference Include="xunit" Version="2.
|
|
16
|
-
<PackageReference Include="xunit.runner.visualstudio" Version="
|
|
13
|
+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.11" />
|
|
14
|
+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.9.0" />
|
|
15
|
+
<PackageReference Include="xunit" Version="2.9.3" />
|
|
16
|
+
<PackageReference Include="xunit.runner.visualstudio" Version="4.0.0">
|
|
17
17
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
18
18
|
<PrivateAssets>all</PrivateAssets>
|
|
19
19
|
</PackageReference>
|
|
20
|
-
<PackageReference Include="coverlet.collector" Version="
|
|
20
|
+
<PackageReference Include="coverlet.collector" Version="10.0.1">
|
|
21
21
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
22
22
|
<PrivateAssets>all</PrivateAssets>
|
|
23
23
|
</PackageReference>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
fastapi==0.
|
|
2
|
-
uvicorn==0.
|
|
3
|
-
pytest==
|
|
4
|
-
httpx==0.
|
|
5
|
-
ruff==0.
|
|
1
|
+
fastapi==0.141.1
|
|
2
|
+
uvicorn==0.52.4
|
|
3
|
+
pytest==9.1.1
|
|
4
|
+
httpx==0.28.1
|
|
5
|
+
ruff==0.16.4
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Flask==3.1.3
|
|
2
|
-
Flask-Cors==
|
|
3
|
-
pytest==
|
|
4
|
-
httpx==0.
|
|
5
|
-
ruff==0.
|
|
2
|
+
Flask-Cors==6.0.5
|
|
3
|
+
pytest==9.1.1
|
|
4
|
+
httpx==0.28.1
|
|
5
|
+
ruff==0.16.4
|