aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bluwy <bluwy@users.noreply.github.com> 2023-03-06 14:58:51 +0000
committerGravatar fredkbot <fred+astrobot@astro.build> 2023-03-06 14:58:51 +0000
commit1aea58f14ad5b15d4af3d42bd92b9bcb1e2b77db (patch)
tree206abdce224840141cf5560bda8da4141b8c18e5
parentc5bac09a42d0bf2a3a9b53fed3743291c2109e43 (diff)
downloadastro-1aea58f14ad5b15d4af3d42bd92b9bcb1e2b77db.tar.gz
astro-1aea58f14ad5b15d4af3d42bd92b9bcb1e2b77db.tar.zst
astro-1aea58f14ad5b15d4af3d42bd92b9bcb1e2b77db.zip
[ci] format
-rwxr-xr-xbenchmark/index.js2
-rw-r--r--packages/integrations/timer/src/server.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/benchmark/index.js b/benchmark/index.js
index c05fafefa..7f59b40cc 100755
--- a/benchmark/index.js
+++ b/benchmark/index.js
@@ -25,7 +25,7 @@ Options
const commandName = args._[0];
const benchmarks = {
memory: () => import('./bench/memory.js'),
- 'render': () => import('./bench/render.js'),
+ render: () => import('./bench/render.js'),
'server-stress': () => import('./bench/server-stress.js'),
};
diff --git a/packages/integrations/timer/src/server.ts b/packages/integrations/timer/src/server.ts
index 0f609fd50..5cfa4ad76 100644
--- a/packages/integrations/timer/src/server.ts
+++ b/packages/integrations/timer/src/server.ts
@@ -1,7 +1,7 @@
import { polyfill } from '@astrojs/webapi';
-import type { IncomingMessage, ServerResponse } from 'http';
import type { SSRManifest } from 'astro';
import { NodeApp } from 'astro/app/node';
+import type { IncomingMessage, ServerResponse } from 'http';
polyfill(globalThis, {
exclude: 'window document',