@valbuild/server 0.87.4 → 0.88.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
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Val Server
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
- VAL_SECRET (Proxy)
|
|
5
|
-
- VAL_GIT_COMMIT
|
|
6
|
-
- VAL_GIT_BRANCH
|
|
7
|
-
- VAL_BUILD_URL
|
|
8
|
-
- VAL_PROJECT (Proxy)
|
|
3
|
+
This package contains Val's integrated server for handling content operations and evaluation.
|
|
9
4
|
|
|
10
|
-
|
|
5
|
+
NOTE: do not use this directly, use the package corresponding to your meta-framework (e.g. Next) instead.
|
|
6
|
+
|
|
7
|
+
## Contributors
|
|
8
|
+
|
|
9
|
+
This package provides server-side Val functionality including module evaluation, file watching, and content validation.
|
|
@@ -1220,7 +1220,7 @@ export const VERSION = "0.0.0";
|
|
|
1220
1220
|
}
|
|
1221
1221
|
if (modulePath === "@valbuild/react/stega") {
|
|
1222
1222
|
return {
|
|
1223
|
-
value: "export const useVal = () => { throw Error(`Cannot use 'useVal' in this type of file`) };export const fetchVal = () => { throw Error(`Cannot use 'fetchVal' in this type of file`) }; export const autoTagJSX = () => { /* ignore */ }; export const stegaClean = () => { throw Error(`Cannot use 'stegaClean' in this type of file`) }; export const
|
|
1223
|
+
value: "export const useVal = () => { throw Error(`Cannot use 'useVal' in this type of file`) };export const fetchVal = () => { throw Error(`Cannot use 'fetchVal' in this type of file`) }; export const autoTagJSX = () => { /* ignore */ }; export const stegaClean = () => { throw Error(`Cannot use 'stegaClean' in this type of file`) }; export const stegaDecodeStrings = () => { throw Error(`Cannot use 'stegaDecodeStrings' in this type of file`) }; export const stegaEncode = () => { throw Error(`Cannot use 'stegaEncode' in this type of file`) }; "
|
|
1224
1224
|
};
|
|
1225
1225
|
}
|
|
1226
1226
|
if (modulePath.startsWith("next/navigation")) {
|
|
@@ -1220,7 +1220,7 @@ export const VERSION = "0.0.0";
|
|
|
1220
1220
|
}
|
|
1221
1221
|
if (modulePath === "@valbuild/react/stega") {
|
|
1222
1222
|
return {
|
|
1223
|
-
value: "export const useVal = () => { throw Error(`Cannot use 'useVal' in this type of file`) };export const fetchVal = () => { throw Error(`Cannot use 'fetchVal' in this type of file`) }; export const autoTagJSX = () => { /* ignore */ }; export const stegaClean = () => { throw Error(`Cannot use 'stegaClean' in this type of file`) }; export const
|
|
1223
|
+
value: "export const useVal = () => { throw Error(`Cannot use 'useVal' in this type of file`) };export const fetchVal = () => { throw Error(`Cannot use 'fetchVal' in this type of file`) }; export const autoTagJSX = () => { /* ignore */ }; export const stegaClean = () => { throw Error(`Cannot use 'stegaClean' in this type of file`) }; export const stegaDecodeStrings = () => { throw Error(`Cannot use 'stegaDecodeStrings' in this type of file`) }; export const stegaEncode = () => { throw Error(`Cannot use 'stegaEncode' in this type of file`) }; "
|
|
1224
1224
|
};
|
|
1225
1225
|
}
|
|
1226
1226
|
if (modulePath.startsWith("next/navigation")) {
|
|
@@ -1189,7 +1189,7 @@ export const VERSION = "0.0.0";
|
|
|
1189
1189
|
}
|
|
1190
1190
|
if (modulePath === "@valbuild/react/stega") {
|
|
1191
1191
|
return {
|
|
1192
|
-
value: "export const useVal = () => { throw Error(`Cannot use 'useVal' in this type of file`) };export const fetchVal = () => { throw Error(`Cannot use 'fetchVal' in this type of file`) }; export const autoTagJSX = () => { /* ignore */ }; export const stegaClean = () => { throw Error(`Cannot use 'stegaClean' in this type of file`) }; export const
|
|
1192
|
+
value: "export const useVal = () => { throw Error(`Cannot use 'useVal' in this type of file`) };export const fetchVal = () => { throw Error(`Cannot use 'fetchVal' in this type of file`) }; export const autoTagJSX = () => { /* ignore */ }; export const stegaClean = () => { throw Error(`Cannot use 'stegaClean' in this type of file`) }; export const stegaDecodeStrings = () => { throw Error(`Cannot use 'stegaDecodeStrings' in this type of file`) }; export const stegaEncode = () => { throw Error(`Cannot use 'stegaEncode' in this type of file`) }; "
|
|
1193
1193
|
};
|
|
1194
1194
|
}
|
|
1195
1195
|
if (modulePath.startsWith("next/navigation")) {
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"description": "Val - integrated server",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "https://github.com/valbuild/val.git"
|
|
7
|
+
"url": "git+https://github.com/valbuild/val.git"
|
|
8
8
|
},
|
|
9
9
|
"main": "dist/valbuild-server.cjs.js",
|
|
10
10
|
"module": "dist/valbuild-server.esm.js",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"./package.json": "./package.json"
|
|
17
17
|
},
|
|
18
18
|
"types": "dist/valbuild-server.cjs.d.ts",
|
|
19
|
-
"version": "0.
|
|
19
|
+
"version": "0.88.0",
|
|
20
20
|
"scripts": {
|
|
21
21
|
"typecheck": "tsc --noEmit",
|
|
22
22
|
"test": "jest",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"@types/jest": "^29.2.5"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@valbuild/core": "~0.
|
|
31
|
-
"@valbuild/shared": "~0.
|
|
32
|
-
"@valbuild/ui": "~0.
|
|
30
|
+
"@valbuild/core": "~0.88.0",
|
|
31
|
+
"@valbuild/shared": "~0.88.0",
|
|
32
|
+
"@valbuild/ui": "~0.88.0",
|
|
33
33
|
"chokidar": "^4.0.1",
|
|
34
34
|
"image-size": "^1.0.2",
|
|
35
35
|
"minimatch": "^3.0.4",
|