nuxt-auto-crud 2.1.2 → 2.1.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 +4 -3
- package/dist/module.d.mts +1 -0
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -56,13 +56,14 @@ export const users = sqliteTable('users', {
|
|
|
56
56
|
|
|
57
57
|
```
|
|
58
58
|
|
|
59
|
-
###
|
|
59
|
+
### Generate Migrations and Start Dev Server
|
|
60
60
|
|
|
61
61
|
```bash
|
|
62
|
-
|
|
63
|
-
|
|
62
|
+
nuxt db generate
|
|
63
|
+
nuxt dev
|
|
64
64
|
|
|
65
65
|
```
|
|
66
|
+
> If you encounter `Error: Cannot find module 'typescript'`, run `bun add -D typescript`.
|
|
66
67
|
|
|
67
68
|
---
|
|
68
69
|
|
package/dist/module.d.mts
CHANGED
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED