next-accelerate 0.2.0 → 0.2.2
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 +12 -2
- package/dist/index.js +1603 -66
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -49,13 +49,19 @@ npx next-accelerate create ingular_resource_name
|
|
|
49
49
|
- Create forms resouces folders for resources.
|
|
50
50
|
|
|
51
51
|
```bash
|
|
52
|
-
npx next-accelerate create:form
|
|
52
|
+
npx next-accelerate create:form singular_resource_name
|
|
53
53
|
```
|
|
54
54
|
|
|
55
55
|
- Using git commit flag.
|
|
56
56
|
|
|
57
57
|
```bash
|
|
58
|
-
npx next-accelerate create:form
|
|
58
|
+
npx next-accelerate create:form singular_resource_name --git
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
- Config Next-Auth.
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
npx next-accelerate config:next-auth --git
|
|
59
65
|
```
|
|
60
66
|
|
|
61
67
|
At the end, you can run:
|
|
@@ -117,6 +123,10 @@ Contributions are welcome!
|
|
|
117
123
|
3. Commit your changes
|
|
118
124
|
4. Open a Pull Request
|
|
119
125
|
|
|
126
|
+
## 🏃 Nex feature
|
|
127
|
+
|
|
128
|
+
- support for testing the created components
|
|
129
|
+
|
|
120
130
|
## ✨ Author
|
|
121
131
|
|
|
122
132
|
Dveloped by **Neto** 💅
|