chore(deps): update dependency @sveltejs/kit to v2.5.25 #68

Merged
vbrandl merged 5 commits from renovate/sveltejs-kit-2.x-lockfile into main 2024-08-29 10:39:56 +02:00
Showing only changes of commit 29e06fdf91 - Show all commits

View File

@ -1,7 +1,6 @@
// place files you want to import through the `$lib` alias in this folder.
import path from 'path';
import bunyan from 'bunyan';
import type { MaybePromise } from '@sveltejs/kit';
export const log = bunyan.createLogger({
name: 'fotochallenge',
@ -33,6 +32,8 @@ export const requestIdHeader = 'x-request-id';
export default safePath;
export type MaybePromise<T> = T | Promise<T>;
export async function timedExecution<T>(
fn: () => MaybePromise<T>
): Promise<{ executionTime: number; result: T }> {