Upgraded dependencies, bumped to Node 24.

This commit is contained in:
2026-07-12 05:27:14 +02:00
parent 2d4786a4fd
commit d745b10d24
181 changed files with 18720 additions and 23134 deletions

7
pages/+onHookCall.js Normal file
View File

@@ -0,0 +1,7 @@
export async function onHookCall(hook, pageContext) {
const start = Date.now();
await hook.call();
console.log(`TIME ${Date.now() - start}ms ${hook.name}-${pageContext.urlOriginal}`);
}