@beeblock/svelar 0.4.7 → 0.4.8
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 +2 -1
- package/dist/cli/bin.js +40 -39
- package/dist/cli/index.js +47 -47
- package/dist/forms/index.d.ts +1 -0
- package/dist/forms/index.js +1 -1
- package/dist/index.js +14 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -77,6 +77,7 @@ See the [Getting Started guide](https://svelar.dev/docs/getting-started) for a c
|
|
|
77
77
|
|
|
78
78
|
```bash
|
|
79
79
|
npx svelar new my-app # scaffold a new project
|
|
80
|
+
npx svelar update # update scaffold files without overwriting
|
|
80
81
|
npx svelar make:model Post -m -c # model + migration + controller
|
|
81
82
|
npx svelar make:service PaymentService # service class
|
|
82
83
|
npx svelar make:job SendEmail # queue job
|
|
@@ -87,7 +88,7 @@ npx svelar queue:work # process queue jobs
|
|
|
87
88
|
npx svelar tinker # interactive REPL
|
|
88
89
|
```
|
|
89
90
|
|
|
90
|
-
|
|
91
|
+
39 code generation commands available. Run `npx svelar` to see all commands.
|
|
91
92
|
|
|
92
93
|
## Database Support
|
|
93
94
|
|