@modern-js/devtools-kit 2.54.6 → 2.55.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/state.d.ts +4 -2
- package/package.json +10 -10
package/dist/state.d.ts
CHANGED
|
@@ -68,7 +68,9 @@ export interface ServerManifest extends ExportedServerState {
|
|
|
68
68
|
/** WebSocket endpoint for live connection. */
|
|
69
69
|
websocket?: string;
|
|
70
70
|
/** Client endpoint for interactive panel. */
|
|
71
|
-
client
|
|
71
|
+
client?: string;
|
|
72
72
|
/** Route assets. */
|
|
73
|
-
routeAssets: Record<string, RouteAsset>;
|
|
73
|
+
routeAssets: string | Record<string, RouteAsset>;
|
|
74
|
+
/** Semver of @modern-js/plugin-devtools. */
|
|
75
|
+
version: string;
|
|
74
76
|
}
|
package/package.json
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"modern",
|
|
22
22
|
"modern.js"
|
|
23
23
|
],
|
|
24
|
-
"version": "2.
|
|
24
|
+
"version": "2.55.0",
|
|
25
25
|
"jsnext:source": "./src/index.ts",
|
|
26
26
|
"types": "./dist/index.d.ts",
|
|
27
27
|
"main": "./dist/index.js",
|
|
@@ -64,8 +64,8 @@
|
|
|
64
64
|
"cookie-es": "^1.0.0",
|
|
65
65
|
"@rsdoctor/types": "^0.2.4",
|
|
66
66
|
"@rsdoctor/utils": "^0.2.4",
|
|
67
|
-
"@modern-js/
|
|
68
|
-
"@modern-js/
|
|
67
|
+
"@modern-js/types": "2.55.0",
|
|
68
|
+
"@modern-js/utils": "2.55.0"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@babel/core": "^7.23.2",
|
|
@@ -80,13 +80,13 @@
|
|
|
80
80
|
"react": "~18.2.0",
|
|
81
81
|
"type-fest": "^4.1.0",
|
|
82
82
|
"typescript": "^5",
|
|
83
|
-
"@modern-js/app-tools": "2.
|
|
84
|
-
"@modern-js/
|
|
85
|
-
"@modern-js/module-tools": "2.
|
|
86
|
-
"@modern-js/
|
|
87
|
-
"@
|
|
88
|
-
"@
|
|
89
|
-
"@scripts/jest-config": "2.
|
|
83
|
+
"@modern-js/app-tools": "2.55.0",
|
|
84
|
+
"@modern-js/core": "2.55.0",
|
|
85
|
+
"@modern-js/module-tools": "2.55.0",
|
|
86
|
+
"@modern-js/types": "2.55.0",
|
|
87
|
+
"@modern-js/uni-builder": "2.55.0",
|
|
88
|
+
"@scripts/build": "2.55.0",
|
|
89
|
+
"@scripts/jest-config": "2.55.0"
|
|
90
90
|
},
|
|
91
91
|
"peerDependencies": {
|
|
92
92
|
"react": "~18.2.0"
|