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',