diff options
author | 2024-02-27 11:15:27 +0000 | |
---|---|---|
committer | 2024-02-27 11:15:27 +0000 | |
commit | 2dd00a002482995469bf510d5b9fd0fa24bd023b (patch) | |
tree | 91eae843ba5383201b485b87a64cb187f64ef28f /benchmark/packages/timer/src | |
parent | 9c21a9df6b03e36bd78dc553e13c55b9ef8c44cd (diff) | |
download | astro-2dd00a002482995469bf510d5b9fd0fa24bd023b.tar.gz astro-2dd00a002482995469bf510d5b9fd0fa24bd023b.tar.zst astro-2dd00a002482995469bf510d5b9fd0fa24bd023b.zip |
chore: import sort source code, exception for the `astro` package (#10242)
* chore: import sort source code, exception for the `astro` package
* fix import sorting bug
* Update packages/integrations/lit/server.js
Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
---------
Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
Diffstat (limited to 'benchmark/packages/timer/src')
-rw-r--r-- | benchmark/packages/timer/src/preview.ts | 2 | ||||
-rw-r--r-- | benchmark/packages/timer/src/server.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/benchmark/packages/timer/src/preview.ts b/benchmark/packages/timer/src/preview.ts index 4ee43ebd0..aa503c11b 100644 --- a/benchmark/packages/timer/src/preview.ts +++ b/benchmark/packages/timer/src/preview.ts @@ -1,5 +1,5 @@ -import type { CreatePreviewServer } from 'astro'; import { createServer } from 'node:http'; +import type { CreatePreviewServer } from 'astro'; import enableDestroy from 'server-destroy'; const preview: CreatePreviewServer = async function ({ serverEntrypoint, host, port }) { diff --git a/benchmark/packages/timer/src/server.ts b/benchmark/packages/timer/src/server.ts index d33e65c00..9905a627b 100644 --- a/benchmark/packages/timer/src/server.ts +++ b/benchmark/packages/timer/src/server.ts @@ -1,6 +1,6 @@ +import type { IncomingMessage, ServerResponse } from 'node:http'; import type { SSRManifest } from 'astro'; import { NodeApp, applyPolyfills } from 'astro/app/node'; -import type { IncomingMessage, ServerResponse } from 'node:http'; applyPolyfills(); |