nuxt-auto-crud 1.16.1 → 1.17.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 +2 -2
- package/dist/module.json +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -45,7 +45,7 @@ bun run dev
|
|
|
45
45
|
1. **Fullstack App**: The template includes the `nuxt-auto-crud` module, providing both the backend APIs and the frontend UI. [Watch Demo](https://youtu.be/M9-koXmhB9k)
|
|
46
46
|
2. **Frontend Only**: You can use the template just for the frontend. In this case, you don't need to install the module in the frontend app. Instead, you would install `nuxt-auto-crud` in a separate backend setup (e.g., another Nuxt project acting as the API).
|
|
47
47
|
|
|
48
|
-
Detailed instructions can be found in [https://auto-crud.clifland.in/docs](https://auto-crud.clifland.in/docs)
|
|
48
|
+
Detailed instructions can be found in [https://auto-crud.clifland.in/docs/auto-crud](https://auto-crud.clifland.in/docs/auto-crud)
|
|
49
49
|
|
|
50
50
|
### 2. Manual Setup (Existing Project)
|
|
51
51
|
|
|
@@ -469,7 +469,7 @@ You can customize hidden fields by modifying the `modelMapper.ts` utility.
|
|
|
469
469
|
## 🔗 Other Helpful Links
|
|
470
470
|
|
|
471
471
|
- **Template:** [https://github.com/clifordpereira/nuxt-auto-crud_template](https://github.com/clifordpereira/nuxt-auto-crud_template)
|
|
472
|
-
- **Docs:** [https://auto-crud.clifland.in/docs](https://auto-crud.clifland.in/docs)
|
|
472
|
+
- **Docs:** [https://auto-crud.clifland.in/docs/auto-crud](https://auto-crud.clifland.in/docs/auto-crud)
|
|
473
473
|
- **Repo:** [https://github.com/clifordpereira/nuxt-auto-crud](https://github.com/clifordpereira/nuxt-auto-crud)
|
|
474
474
|
- **YouTube (Installation):** [https://youtu.be/M9-koXmhB9k](https://youtu.be/M9-koXmhB9k)
|
|
475
475
|
- **YouTube (Add Schemas):** [https://youtu.be/7gW0KW1KtN0](https://youtu.be/7gW0KW1KtN0)
|
package/dist/module.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-auto-crud",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.17.3",
|
|
4
4
|
"description": "Exposes RESTful CRUD APIs for your Nuxt app based solely on your database migrations.",
|
|
5
5
|
"author": "Cliford Pereira",
|
|
6
6
|
"license": "MIT",
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@nuxt/kit": "^4.2.1",
|
|
51
|
+
"@nuxt/scripts": "^0.13.0",
|
|
51
52
|
"@types/pluralize": "^0.0.33",
|
|
52
53
|
"c12": "^2.0.1",
|
|
53
54
|
"jose": "^5.9.6",
|