@sigx/cli 0.2.1 → 0.2.3
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 +1 -1
- package/dist/commands/create.js +201 -181
- package/dist/commands/create.js.map +1 -1
- package/dist/templates/basic/package.json +3 -3
- package/dist/templates/basic-daisyui/package.json +4 -4
- package/dist/templates/basic-tailwind/package.json +3 -3
- package/dist/templates/lynx/gitignore +30 -0
- package/dist/templates/lynx/package.json +16 -16
- package/dist/templates/lynx/src/main.thread.tsx +1 -1
- package/dist/templates/lynx-daisyui/gitignore +30 -0
- package/dist/templates/lynx-daisyui/package.json +17 -17
- package/dist/templates/lynx-daisyui/src/main.thread.tsx +1 -1
- package/dist/templates/lynx-tailwind/gitignore +30 -0
- package/dist/templates/lynx-tailwind/package.json +16 -16
- package/dist/templates/lynx-tailwind/src/main.thread.tsx +1 -1
- package/dist/templates/ssg/package.json +6 -6
- package/dist/templates/ssg-daisyui/package.json +7 -7
- package/dist/templates/ssg-tailwind/package.json +6 -6
- package/dist/templates/ssr/package.json +5 -5
- package/dist/templates/ssr-daisyui/package.json +6 -6
- package/dist/templates/ssr-tailwind/package.json +5 -5
- package/package.json +2 -2
- package/templates/basic/package.json +3 -3
- package/templates/basic-daisyui/package.json +4 -4
- package/templates/basic-tailwind/package.json +3 -3
- package/templates/lynx/gitignore +30 -0
- package/templates/lynx/package.json +16 -16
- package/templates/lynx/src/main.thread.tsx +1 -1
- package/templates/lynx-daisyui/gitignore +30 -0
- package/templates/lynx-daisyui/package.json +17 -17
- package/templates/lynx-daisyui/src/main.thread.tsx +1 -1
- package/templates/lynx-tailwind/gitignore +30 -0
- package/templates/lynx-tailwind/package.json +16 -16
- package/templates/lynx-tailwind/src/main.thread.tsx +1 -1
- package/templates/ssg/package.json +6 -6
- package/templates/ssg-daisyui/package.json +7 -7
- package/templates/ssg-tailwind/package.json +6 -6
- package/templates/ssr/package.json +5 -5
- package/templates/ssr-daisyui/package.json +6 -6
- package/templates/ssr-tailwind/package.json +5 -5
|
@@ -9,18 +9,18 @@
|
|
|
9
9
|
"preview": "ssg preview"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"sigx": "
|
|
13
|
-
"@sigx/ssg": "
|
|
14
|
-
"@sigx/router": "
|
|
15
|
-
"@sigx/server-renderer": "
|
|
16
|
-
"@sigx/daisyui": "
|
|
12
|
+
"sigx": "latest",
|
|
13
|
+
"@sigx/ssg": "latest",
|
|
14
|
+
"@sigx/router": "latest",
|
|
15
|
+
"@sigx/server-renderer": "latest",
|
|
16
|
+
"@sigx/daisyui": "latest"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@sigx/vite": "
|
|
19
|
+
"@sigx/vite": "latest",
|
|
20
20
|
"vite": "^8.0.3",
|
|
21
21
|
"typescript": "^5.9.3",
|
|
22
22
|
"tailwindcss": "^4.1.0",
|
|
23
23
|
"@tailwindcss/vite": "^4.2.2",
|
|
24
24
|
"daisyui": "^5.0.0"
|
|
25
25
|
}
|
|
26
|
-
}
|
|
26
|
+
}
|
|
@@ -9,16 +9,16 @@
|
|
|
9
9
|
"preview": "ssg preview"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"sigx": "
|
|
13
|
-
"@sigx/ssg": "
|
|
14
|
-
"@sigx/router": "
|
|
15
|
-
"@sigx/server-renderer": "
|
|
12
|
+
"sigx": "latest",
|
|
13
|
+
"@sigx/ssg": "latest",
|
|
14
|
+
"@sigx/router": "latest",
|
|
15
|
+
"@sigx/server-renderer": "latest"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@sigx/vite": "
|
|
18
|
+
"@sigx/vite": "latest",
|
|
19
19
|
"vite": "^8.0.3",
|
|
20
20
|
"typescript": "^5.9.3",
|
|
21
21
|
"tailwindcss": "^4.1.0",
|
|
22
22
|
"@tailwindcss/vite": "^4.2.2"
|
|
23
23
|
}
|
|
24
|
-
}
|
|
24
|
+
}
|
|
@@ -10,15 +10,15 @@
|
|
|
10
10
|
"preview": "cross-env NODE_ENV=production node server.js"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"sigx": "
|
|
14
|
-
"@sigx/server-renderer": "
|
|
15
|
-
"@sigx/router": "
|
|
13
|
+
"sigx": "latest",
|
|
14
|
+
"@sigx/server-renderer": "latest",
|
|
15
|
+
"@sigx/router": "latest",
|
|
16
16
|
"express": "^4.18.2"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@sigx/vite": "
|
|
19
|
+
"@sigx/vite": "latest",
|
|
20
20
|
"cross-env": "^7.0.3",
|
|
21
21
|
"vite": "^8.0.3",
|
|
22
22
|
"typescript": "^5.9.3"
|
|
23
23
|
}
|
|
24
|
-
}
|
|
24
|
+
}
|
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
"preview": "cross-env NODE_ENV=production node server.js"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"sigx": "
|
|
14
|
-
"@sigx/daisyui": "
|
|
15
|
-
"@sigx/server-renderer": "
|
|
16
|
-
"@sigx/router": "
|
|
13
|
+
"sigx": "latest",
|
|
14
|
+
"@sigx/daisyui": "latest",
|
|
15
|
+
"@sigx/server-renderer": "latest",
|
|
16
|
+
"@sigx/router": "latest",
|
|
17
17
|
"express": "^4.18.2"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@sigx/vite": "
|
|
20
|
+
"@sigx/vite": "latest",
|
|
21
21
|
"cross-env": "^7.0.3",
|
|
22
22
|
"vite": "^8.0.3",
|
|
23
23
|
"typescript": "^5.9.3",
|
|
@@ -25,4 +25,4 @@
|
|
|
25
25
|
"@tailwindcss/vite": "^4.2.2",
|
|
26
26
|
"daisyui": "^5.0.0"
|
|
27
27
|
}
|
|
28
|
-
}
|
|
28
|
+
}
|
|
@@ -10,17 +10,17 @@
|
|
|
10
10
|
"preview": "cross-env NODE_ENV=production node server.js"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"sigx": "
|
|
14
|
-
"@sigx/server-renderer": "
|
|
15
|
-
"@sigx/router": "
|
|
13
|
+
"sigx": "latest",
|
|
14
|
+
"@sigx/server-renderer": "latest",
|
|
15
|
+
"@sigx/router": "latest",
|
|
16
16
|
"express": "^4.18.2"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@sigx/vite": "
|
|
19
|
+
"@sigx/vite": "latest",
|
|
20
20
|
"cross-env": "^7.0.3",
|
|
21
21
|
"vite": "^8.0.3",
|
|
22
22
|
"typescript": "^5.9.3",
|
|
23
23
|
"tailwindcss": "^4.1.0",
|
|
24
24
|
"@tailwindcss/vite": "^4.2.2"
|
|
25
25
|
}
|
|
26
|
-
}
|
|
26
|
+
}
|