0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

[ci] format

This commit is contained in:
Emanuele Stoppa 2024-08-13 14:48:00 +00:00 committed by astrobot-houston
parent c7bda4cd67
commit cb98b74881

View file

@ -214,7 +214,7 @@ export type SerializedActionResult =
export function serializeActionResult(res: SafeResult<any, any>): SerializedActionResult {
if (res.error) {
if (import.meta.env?.DEV) {
actionResultErrorStack.set(res.error.stack)
actionResultErrorStack.set(res.error.stack);
}
return {
type: 'error',
@ -222,7 +222,7 @@ export function serializeActionResult(res: SafeResult<any, any>): SerializedActi
contentType: 'application/json',
body: JSON.stringify({
...res.error,
message: res.error.message
message: res.error.message,
}),
};
}
@ -251,8 +251,9 @@ export function deserializeActionResult(res: SerializedActionResult): SafeResult
const error = ActionError.fromJson(JSON.parse(res.body));
error.stack = actionResultErrorStack.get();
return {
error, data: undefined
}
error,
data: undefined,
};
}
}
if (res.type === 'empty') {
@ -266,8 +267,8 @@ export function deserializeActionResult(res: SerializedActionResult): SafeResult
};
}
// in-memory singleton to save the stack trace
const actionResultErrorStack = function actionResultErrorStackFn() {
// in-memory singleton to save the stack trace
const actionResultErrorStack = (function actionResultErrorStackFn() {
let errorStack: string | undefined;
return {
set(stack: string | undefined) {
@ -275,6 +276,6 @@ const actionResultErrorStack = function actionResultErrorStackFn() {
},
get() {
return errorStack;
}
}
}();
},
};
})();