create-velox-app 0.6.85 → 0.6.86

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # create-velox-app
2
2
 
3
+ ## 0.6.86
4
+
5
+ ### Patch Changes
6
+
7
+ - updated documentation
8
+
3
9
  ## 0.6.85
4
10
 
5
11
  ### Patch Changes
package/GUIDE.md CHANGED
@@ -17,9 +17,10 @@ Your app will be running at `http://localhost:3030`
17
17
 
18
18
  ```bash
19
19
  npx create-velox-app my-app # Default REST API
20
- npx create-velox-app my-app --auth # With authentication
21
- npx create-velox-app my-app --trpc # tRPC-only setup
22
- npx create-velox-app my-app --rsc # Full-stack setup with React Server Components
20
+ npx create-velox-app my-app --auth # With JWT authentication
21
+ npx create-velox-app my-app --trpc # tRPC-only setup (no REST)
22
+ npx create-velox-app my-app --rsc # Full-stack RSC with Vinxi
23
+ npx create-velox-app my-app --rsc-auth # Full-stack RSC + JWT authentication
23
24
  ```
24
25
 
25
26
  ## Project Structure
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-velox-app",
3
- "version": "0.6.85",
3
+ "version": "0.6.86",
4
4
  "description": "Project scaffolder for VeloxTS framework",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",