@valbuild/next 0.81.0 → 0.83.0
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 +11 -4
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -62,13 +62,18 @@ Join us on [discord](https://discord.gg/cZzqPvaX8k) to get help or give us feedb
|
|
|
62
62
|
|
|
63
63
|
## Installation
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
### Using the NextJS starter templates
|
|
66
66
|
|
|
67
|
-
|
|
67
|
+
If you're starting from scratch, the easiest way to get up and running with Val and NextJS is to use npm (or similar) create script:
|
|
68
68
|
|
|
69
|
-
|
|
69
|
+
```sh
|
|
70
|
+
npm create @valbuild
|
|
70
71
|
```
|
|
71
72
|
|
|
73
|
+
### Integrating into an existing project
|
|
74
|
+
|
|
75
|
+
- Make sure you have NextJS (version 14 or higher) installed
|
|
76
|
+
|
|
72
77
|
- Install the packages:
|
|
73
78
|
|
|
74
79
|
```sh
|
|
@@ -87,7 +92,9 @@ npm install -D @valbuild/eslint-plugin@latest
|
|
|
87
92
|
npx @valbuild/init@latest
|
|
88
93
|
```
|
|
89
94
|
|
|
90
|
-
|
|
95
|
+
### Manually
|
|
96
|
+
|
|
97
|
+
It is also possible to setup Val using the [manual configuration guide](./MANUAL_CONFIGURATION.md).
|
|
91
98
|
|
|
92
99
|
## Additional setup
|
|
93
100
|
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"next",
|
|
9
9
|
"react"
|
|
10
10
|
],
|
|
11
|
-
"version": "0.
|
|
11
|
+
"version": "0.83.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"typecheck": "tsc --noEmit",
|
|
14
14
|
"test": "jest"
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"exports": true
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@valbuild/core": "~0.
|
|
49
|
-
"@valbuild/react": "~0.
|
|
50
|
-
"@valbuild/server": "~0.
|
|
51
|
-
"@valbuild/shared": "~0.
|
|
52
|
-
"@valbuild/ui": "~0.
|
|
48
|
+
"@valbuild/core": "~0.83.0",
|
|
49
|
+
"@valbuild/react": "~0.83.0",
|
|
50
|
+
"@valbuild/server": "~0.83.0",
|
|
51
|
+
"@valbuild/shared": "~0.83.0",
|
|
52
|
+
"@valbuild/ui": "~0.83.0",
|
|
53
53
|
"client-only": "^0.0.1",
|
|
54
54
|
"server-only": "^0.0.1"
|
|
55
55
|
},
|