@valbuild/next 0.78.2 → 0.79.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 +7 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -62,7 +62,13 @@ Join us on [discord](https://discord.gg/cZzqPvaX8k) to get help or give us feedb
|
|
|
62
62
|
|
|
63
63
|
## Installation
|
|
64
64
|
|
|
65
|
-
- Make sure
|
|
65
|
+
- Make sure you have setup a NextJS (version 14 or higher) project. If not you can create a new project like this:
|
|
66
|
+
|
|
67
|
+
```sh
|
|
68
|
+
|
|
69
|
+
npm create next-app
|
|
70
|
+
```
|
|
71
|
+
|
|
66
72
|
- Install the packages:
|
|
67
73
|
|
|
68
74
|
```sh
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"next",
|
|
9
9
|
"react"
|
|
10
10
|
],
|
|
11
|
-
"version": "0.
|
|
11
|
+
"version": "0.79.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.79.0",
|
|
49
|
+
"@valbuild/react": "~0.79.0",
|
|
50
|
+
"@valbuild/server": "~0.79.0",
|
|
51
|
+
"@valbuild/shared": "~0.79.0",
|
|
52
|
+
"@valbuild/ui": "~0.79.0",
|
|
53
53
|
"client-only": "^0.0.1",
|
|
54
54
|
"server-only": "^0.0.1"
|
|
55
55
|
},
|