@valbuild/next 0.82.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.
Files changed (2) hide show
  1. package/README.md +11 -4
  2. 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
- - Make sure you have setup a NextJS (version 14 or higher) project. If not you can create a new project like this:
65
+ ### Using the NextJS starter templates
66
66
 
67
- ```sh
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
- npm create next-app
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
- If you do not wish to use the init script, or having issues with it, checkout the [manual configuration guide](./MANUAL_CONFIGURATION.md).
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.82.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.82.0",
49
- "@valbuild/react": "~0.82.0",
50
- "@valbuild/server": "~0.82.0",
51
- "@valbuild/shared": "~0.82.0",
52
- "@valbuild/ui": "~0.82.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
  },