@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 +5 -2
- package/dist/index.js +10742 -4892
- package/package.json +9 -7
- package/stubs/command.stub +10 -0
- package/stubs/model.graphql.stub +44 -0
- package/stubs/model.stub +7 -7
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
|
|
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
|
|
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
|
|