@jay-framework/dev-server 0.23.1 → 0.24.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/index.js +15 -0
- package/package.json +14 -14
package/dist/index.js
CHANGED
|
@@ -2600,6 +2600,11 @@ async function handleCachedRequest(vite, route, options, cachedEntry, pageParams
|
|
|
2600
2600
|
timing?.end();
|
|
2601
2601
|
return;
|
|
2602
2602
|
}
|
|
2603
|
+
if (pagePartsResult.validations.length > 0) {
|
|
2604
|
+
for (const v of pagePartsResult.validations) {
|
|
2605
|
+
getLogger().warn(v);
|
|
2606
|
+
}
|
|
2607
|
+
}
|
|
2603
2608
|
const {
|
|
2604
2609
|
parts: pageParts,
|
|
2605
2610
|
clientTrackByMap,
|
|
@@ -2690,6 +2695,11 @@ async function handlePreRenderRequest(vite, route, options, slowlyPhase, slowRen
|
|
|
2690
2695
|
timing?.end();
|
|
2691
2696
|
return;
|
|
2692
2697
|
}
|
|
2698
|
+
if (initialPartsResult.validations.length > 0) {
|
|
2699
|
+
for (const v of initialPartsResult.validations) {
|
|
2700
|
+
getLogger().warn(v);
|
|
2701
|
+
}
|
|
2702
|
+
}
|
|
2693
2703
|
const { linkedCssFiles: initCss, linkedComponentFiles: initComps } = initialPartsResult.val;
|
|
2694
2704
|
_watchLinkedFiles([...initCss || [], ...initComps || []], route);
|
|
2695
2705
|
const slowStart = Date.now();
|
|
@@ -2781,6 +2791,11 @@ async function handleClientOnlyRequest(vite, route, options, slowlyPhase, pagePa
|
|
|
2781
2791
|
timing?.end();
|
|
2782
2792
|
return;
|
|
2783
2793
|
}
|
|
2794
|
+
if (pagePartsResult.validations.length > 0) {
|
|
2795
|
+
for (const v of pagePartsResult.validations) {
|
|
2796
|
+
getLogger().warn(v);
|
|
2797
|
+
}
|
|
2798
|
+
}
|
|
2784
2799
|
const {
|
|
2785
2800
|
parts: pageParts,
|
|
2786
2801
|
serverTrackByMap,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jay-framework/dev-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.24.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -23,23 +23,23 @@
|
|
|
23
23
|
"test:watch": "vitest"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@jay-framework/compiler-jay-stack": "^0.
|
|
27
|
-
"@jay-framework/compiler-shared": "^0.
|
|
28
|
-
"@jay-framework/component": "^0.
|
|
29
|
-
"@jay-framework/fullstack-component": "^0.
|
|
30
|
-
"@jay-framework/logger": "^0.
|
|
31
|
-
"@jay-framework/runtime": "^0.
|
|
32
|
-
"@jay-framework/stack-client-runtime": "^0.
|
|
33
|
-
"@jay-framework/stack-route-scanner": "^0.
|
|
34
|
-
"@jay-framework/stack-server-runtime": "^0.
|
|
35
|
-
"@jay-framework/view-state-merge": "^0.
|
|
26
|
+
"@jay-framework/compiler-jay-stack": "^0.24.0",
|
|
27
|
+
"@jay-framework/compiler-shared": "^0.24.0",
|
|
28
|
+
"@jay-framework/component": "^0.24.0",
|
|
29
|
+
"@jay-framework/fullstack-component": "^0.24.0",
|
|
30
|
+
"@jay-framework/logger": "^0.24.0",
|
|
31
|
+
"@jay-framework/runtime": "^0.24.0",
|
|
32
|
+
"@jay-framework/stack-client-runtime": "^0.24.0",
|
|
33
|
+
"@jay-framework/stack-route-scanner": "^0.24.0",
|
|
34
|
+
"@jay-framework/stack-server-runtime": "^0.24.0",
|
|
35
|
+
"@jay-framework/view-state-merge": "^0.24.0",
|
|
36
36
|
"busboy": "^1.6.0",
|
|
37
37
|
"vite": "^5.0.11"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@jay-framework/dev-environment": "^0.
|
|
41
|
-
"@jay-framework/jay-cli": "^0.
|
|
42
|
-
"@jay-framework/stack-client-runtime": "^0.
|
|
40
|
+
"@jay-framework/dev-environment": "^0.24.0",
|
|
41
|
+
"@jay-framework/jay-cli": "^0.24.0",
|
|
42
|
+
"@jay-framework/stack-client-runtime": "^0.24.0",
|
|
43
43
|
"@playwright/test": "^1.58.2",
|
|
44
44
|
"@types/busboy": "^1.5.4",
|
|
45
45
|
"@types/express": "^5.0.2",
|