File tree 2 files changed +10
-4
lines changed
packages/vite/src/node/server
2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ export interface NormalizedHotChannel<Api = any> {
157
157
off ( event : string , listener : Function ) : void
158
158
/** @internal */
159
159
setInvokeHandler ( invokeHandlers : InvokeMethods | undefined ) : void
160
- handleInvoke ( payload : HotPayload ) : Promise < { r : any } | { e : any } >
160
+ handleInvoke ( payload : HotPayload ) : Promise < { result : any } | { error : any } >
161
161
/**
162
162
* Start listening for messages
163
163
*/
@@ -301,7 +301,13 @@ export const normalizeHotChannel = (
301
301
}
302
302
channel . on ?.( 'vite:invoke' , listenerForInvokeHandler )
303
303
} ,
304
- handleInvoke,
304
+ handleInvoke : async ( payload ) => {
305
+ const data = await handleInvoke ( payload )
306
+ if ( data . e ) {
307
+ return { error : data . e }
308
+ }
309
+ return { result : data . r }
310
+ } ,
305
311
send : ( ...args : any [ ] ) => {
306
312
let payload : HotPayload
307
313
if ( typeof args [ 0 ] === 'string' ) {
@@ -1161,7 +1167,7 @@ export function createDeprecatedHotBroadcaster(
1161
1167
send : ws . send ,
1162
1168
setInvokeHandler : ws . setInvokeHandler ,
1163
1169
handleInvoke : async ( ) => ( {
1164
- e : {
1170
+ error : {
1165
1171
name : 'TransportError' ,
1166
1172
message : 'handleInvoke not implemented' ,
1167
1173
stack : new Error ( ) . stack ,
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ export function createWebSocketServer(
105
105
off : noop as any as WebSocketServer [ 'off' ] ,
106
106
setInvokeHandler : noop ,
107
107
handleInvoke : async ( ) => ( {
108
- e : {
108
+ error : {
109
109
name : 'TransportError' ,
110
110
message : 'handleInvoke not implemented' ,
111
111
stack : new Error ( ) . stack ,
You can’t perform that action at this time.
0 commit comments