@gravito/pulse 3.0.1 → 3.2.1

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
@@ -32,7 +32,7 @@ gravito create my-app --template inertia-react
32
32
  gravito create my-app --template static-site
33
33
  ```
34
34
 
35
- When using the `static-site` template, you'll be prompted to choose between React or Vue 3 for the frontend framework.
35
+ When using the `static-site` template, you'll be prompted to choose between React, Vue, or Svelte for the frontend framework.
36
36
 
37
37
  ### Scaffolding (Make Commands)
38
38
 
@@ -44,6 +44,9 @@ gravito make:controller UserController
44
44
 
45
45
  # Create a Middleware
46
46
  gravito make:middleware EnsureAdmin
47
+
48
+ # Create a Command
49
+ gravito make:command GreetCommand
47
50
  ```
48
51
 
49
52
  ### Development Utilities
@@ -64,7 +67,7 @@ gravito tinker
64
67
  |----------|-------------|
65
68
  | `basic` | Minimal setup with PlanetCore + Gravito Core. Great for APIs and simple backends. |
66
69
  | `inertia-react` | Full-stack monolith with Inertia.js + React + Vite. Build modern SPAs with server-side routing. |
67
- | `static-site` | Pre-configured static site generator for GitHub Pages, Vercel, Netlify. Supports React or Vue 3. Perfect for documentation sites, blogs, and marketing pages. |
70
+ | `static-site` | Pre-configured static site generator for GitHub Pages, Vercel, Netlify. Supports React, Vue, or Svelte. Perfect for documentation sites, blogs, and marketing pages. |
68
71
 
69
72
  ## Development
70
73