@valbuild/next 0.78.3 → 0.79.1

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 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 your project is using
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
@@ -30,6 +30,7 @@ export declare const Internal: {
30
30
  getValPath: typeof import("@valbuild/core/dist/declarations/src/val").getValPath;
31
31
  getSource: typeof import("@valbuild/core/dist/declarations/src/module").getSource;
32
32
  resolvePath: typeof import("@valbuild/core/dist/declarations/src/module").resolvePath;
33
+ safeResolvePath: typeof import("@valbuild/core/dist/declarations/src/module").safeResolvePath;
33
34
  splitModuleFilePathAndModulePath: typeof import("@valbuild/core/dist/declarations/src/module").splitModuleFilePathAndModulePath;
34
35
  joinModuleFilePathAndModulePath: typeof import("@valbuild/core/dist/declarations/src/module").joinModuleFilePathAndModulePath;
35
36
  remote: {
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "next",
9
9
  "react"
10
10
  ],
11
- "version": "0.78.3",
11
+ "version": "0.79.1",
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.78.3",
49
- "@valbuild/react": "~0.78.3",
50
- "@valbuild/server": "~0.78.3",
51
- "@valbuild/shared": "~0.78.3",
52
- "@valbuild/ui": "~0.78.3",
48
+ "@valbuild/core": "~0.79.1",
49
+ "@valbuild/react": "~0.79.1",
50
+ "@valbuild/server": "~0.79.1",
51
+ "@valbuild/shared": "~0.79.1",
52
+ "@valbuild/ui": "~0.79.1",
53
53
  "client-only": "^0.0.1",
54
54
  "server-only": "^0.0.1"
55
55
  },