create-projx 1.6.4 → 1.6.5
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/package.json +1 -1
- package/src/templates/setup.sh.ejs +20 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-projx",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.5",
|
|
4
4
|
"description": "Scaffold production-grade fullstack projects in seconds. FastAPI, Fastify, React, Flutter, Terraform — with auth, database, CI/CD, E2E tests, and Docker. One command, ready to deploy.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -5,28 +5,43 @@ git config core.hooksPath .githooks
|
|
|
5
5
|
echo "Git hooks configured."
|
|
6
6
|
<% for (const inst of fastapiInstances) { %>
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
(
|
|
9
|
+
cd <%= inst.path %>
|
|
10
|
+
uv sync --all-extras
|
|
11
|
+
)
|
|
9
12
|
echo "<%= inst.display %> dependencies installed."
|
|
10
13
|
<% } %>
|
|
11
14
|
<% for (const inst of fastifyInstances) { %>
|
|
12
15
|
|
|
13
|
-
|
|
16
|
+
(
|
|
17
|
+
cd <%= inst.path %>
|
|
18
|
+
<%= pm.install %>
|
|
19
|
+
)
|
|
14
20
|
echo "<%= inst.display %> dependencies installed."
|
|
15
21
|
<% } %>
|
|
16
22
|
<% for (const inst of frontendInstances) { %>
|
|
17
23
|
|
|
18
|
-
|
|
24
|
+
(
|
|
25
|
+
cd <%= inst.path %>
|
|
26
|
+
<%= pm.install %>
|
|
27
|
+
)
|
|
19
28
|
echo "<%= inst.display %> dependencies installed."
|
|
20
29
|
<% } %>
|
|
21
30
|
<% for (const inst of e2eInstances) { %>
|
|
22
31
|
|
|
23
|
-
|
|
32
|
+
(
|
|
33
|
+
cd <%= inst.path %>
|
|
34
|
+
<%= pm.install %>
|
|
35
|
+
)
|
|
24
36
|
echo "<%= inst.display %> dependencies installed."
|
|
25
37
|
<% } %>
|
|
26
38
|
<% for (const inst of mobileInstances) { %>
|
|
27
39
|
|
|
28
40
|
if command -v flutter &>/dev/null; then
|
|
29
|
-
|
|
41
|
+
(
|
|
42
|
+
cd <%= inst.path %>
|
|
43
|
+
flutter pub get
|
|
44
|
+
)
|
|
30
45
|
echo "<%= inst.display %> dependencies installed."
|
|
31
46
|
else
|
|
32
47
|
echo "<%= inst.display %> skipped (SDK not installed)."
|