@valbuild/server 0.67.0 → 0.68.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/dist/declarations/src/ValFS.d.ts +2 -0
- package/dist/declarations/src/ValFSHost.d.ts +2 -0
- package/dist/declarations/src/ValServer.d.ts +2 -0
- package/dist/declarations/src/index.d.ts +0 -1
- package/dist/valbuild-server.cjs.dev.js +791 -607
- package/dist/valbuild-server.cjs.prod.js +791 -607
- package/dist/valbuild-server.esm.js +716 -529
- package/package.json +4 -4
- package/dist/declarations/src/patch/validation.d.ts +0 -6
package/package.json
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
"./package.json": "./package.json"
|
13
13
|
},
|
14
14
|
"types": "dist/valbuild-server.cjs.d.ts",
|
15
|
-
"version": "0.
|
15
|
+
"version": "0.68.0",
|
16
16
|
"scripts": {
|
17
17
|
"typecheck": "tsc --noEmit",
|
18
18
|
"test": "jest",
|
@@ -23,9 +23,9 @@
|
|
23
23
|
"@types/jest": "^29.2.5"
|
24
24
|
},
|
25
25
|
"dependencies": {
|
26
|
-
"@valbuild/core": "~0.
|
27
|
-
"@valbuild/shared": "~0.
|
28
|
-
"@valbuild/ui": "~0.
|
26
|
+
"@valbuild/core": "~0.68.0",
|
27
|
+
"@valbuild/shared": "~0.68.0",
|
28
|
+
"@valbuild/ui": "~0.68.0",
|
29
29
|
"chokidar": "^4.0.1",
|
30
30
|
"image-size": "^1.0.2",
|
31
31
|
"minimatch": "^3.0.4",
|
@@ -1,6 +0,0 @@
|
|
1
|
-
import type { PatchJSON as PatchJSONT, Patch as PatchT } from "@valbuild/core/patch";
|
2
|
-
import z from "zod";
|
3
|
-
export declare const PatchJSON: z.ZodType<PatchJSONT>;
|
4
|
-
export type PatchJSON = PatchJSONT;
|
5
|
-
export declare const Patch: z.ZodType<PatchT>;
|
6
|
-
export type Patch = PatchT;
|