summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Emanuele Stoppa <ematipico@users.noreply.github.com> 2024-11-06 12:34:13 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2024-11-06 12:34:13 +0000
commit4c9a42c2da7ac10f7aa5a5813cdac31253afa339 (patch)
treec1e8759d2f7c8b667074de227d98106f7c7221c6
parented5a9f1b755f9ae31735dacf75b970669c8c38c8 (diff)
downloadastro-4c9a42c2da7ac10f7aa5a5813cdac31253afa339.tar.gz
astro-4c9a42c2da7ac10f7aa5a5813cdac31253afa339.tar.zst
astro-4c9a42c2da7ac10f7aa5a5813cdac31253afa339.zip
[ci] format
-rw-r--r--benchmark/bench/memory.js4
-rw-r--r--benchmark/packages/timer/src/server.ts2
2 files changed, 3 insertions, 3 deletions
diff --git a/benchmark/bench/memory.js b/benchmark/bench/memory.js
index 5c746870e..4f9153cc0 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<string, import('../../packages/astro/src/core/config/timer').Stat>} AstroTimerStat */
diff --git a/benchmark/packages/timer/src/server.ts b/benchmark/packages/timer/src/server.ts
index edcfaa248..9905a627b 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();
- }
+ },
};
}