@jay-framework/production-server 0.19.1 → 0.19.3
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 +1 -5
- package/package.json +12 -12
package/dist/index.js
CHANGED
|
@@ -911,11 +911,7 @@ async function discoverPluginClientPackages(projectRoot) {
|
|
|
911
911
|
const projectPkg = JSON.parse(
|
|
912
912
|
await fs.readFile(path.join(projectRoot, "package.json"), "utf-8")
|
|
913
913
|
);
|
|
914
|
-
const
|
|
915
|
-
...projectPkg.dependencies,
|
|
916
|
-
...projectPkg.devDependencies
|
|
917
|
-
};
|
|
918
|
-
for (const dep of Object.keys(allDeps)) {
|
|
914
|
+
for (const dep of Object.keys(projectPkg.dependencies || {})) {
|
|
919
915
|
if (dep.startsWith("@jay-framework/")) {
|
|
920
916
|
await walk(dep);
|
|
921
917
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jay-framework/production-server",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.3",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -30,20 +30,20 @@
|
|
|
30
30
|
"test:watch": "vitest"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@jay-framework/compiler-jay-html": "^0.19.
|
|
34
|
-
"@jay-framework/compiler-jay-stack": "^0.19.
|
|
35
|
-
"@jay-framework/compiler-shared": "^0.19.
|
|
36
|
-
"@jay-framework/fullstack-component": "^0.19.
|
|
37
|
-
"@jay-framework/logger": "^0.19.
|
|
38
|
-
"@jay-framework/ssr-runtime": "^0.19.
|
|
39
|
-
"@jay-framework/stack-route-scanner": "^0.19.
|
|
40
|
-
"@jay-framework/stack-server-runtime": "^0.19.
|
|
41
|
-
"@jay-framework/view-state-merge": "^0.19.
|
|
42
|
-
"@jay-framework/vite-plugin": "^0.19.
|
|
33
|
+
"@jay-framework/compiler-jay-html": "^0.19.3",
|
|
34
|
+
"@jay-framework/compiler-jay-stack": "^0.19.3",
|
|
35
|
+
"@jay-framework/compiler-shared": "^0.19.3",
|
|
36
|
+
"@jay-framework/fullstack-component": "^0.19.3",
|
|
37
|
+
"@jay-framework/logger": "^0.19.3",
|
|
38
|
+
"@jay-framework/ssr-runtime": "^0.19.3",
|
|
39
|
+
"@jay-framework/stack-route-scanner": "^0.19.3",
|
|
40
|
+
"@jay-framework/stack-server-runtime": "^0.19.3",
|
|
41
|
+
"@jay-framework/view-state-merge": "^0.19.3",
|
|
42
|
+
"@jay-framework/vite-plugin": "^0.19.3",
|
|
43
43
|
"vite": "^5.0.11"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@jay-framework/dev-environment": "^0.19.
|
|
46
|
+
"@jay-framework/dev-environment": "^0.19.3",
|
|
47
47
|
"@types/node": "^22.15.21",
|
|
48
48
|
"rimraf": "^5.0.5",
|
|
49
49
|
"tsup": "^8.0.1",
|