diff --git a/benchmark/bench/memory.js b/benchmark/bench/memory.js index 5c746870e79d..4f9153cc0c67 100644 --- a/benchmark/bench/memory.js +++ b/benchmark/bench/memory.js @@ -1,7 +1,7 @@ -import { exec } from 'tinyexec'; -import { markdownTable } from 'markdown-table'; import fs from 'node:fs/promises'; import { fileURLToPath } from 'node:url'; +import { markdownTable } from 'markdown-table'; +import { exec } from 'tinyexec'; import { astroBin } from './_util.js'; /** @typedef {Record} AstroTimerStat */ diff --git a/benchmark/packages/timer/src/server.ts b/benchmark/packages/timer/src/server.ts index edcfaa248f0e..9905a627b755 100644 --- a/benchmark/packages/timer/src/server.ts +++ b/benchmark/packages/timer/src/server.ts @@ -13,6 +13,6 @@ export function createExports(manifest: SSRManifest) { const end = performance.now(); res.write(end - start + ''); res.end(); - } + }, }; }