diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 26b000ee06e5..47aec886dbd6 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -42,15 +42,15 @@ ```ts export function integration(): AstroIntegration { - return { - name: "my-integration", - hooks: { - "astro:build:ssr": ({ entryPoints }) => { - // do something with `entryPoints` - } - } - } - } + return { + name: 'my-integration', + hooks: { + 'astro:build:ssr': ({ entryPoints }) => { + // do something with `entryPoints` + }, + }, + }; + } ``` ### Patch Changes diff --git a/packages/astro/src/core/build/static-build.ts b/packages/astro/src/core/build/static-build.ts index 0be7f8739502..59a42db34435 100644 --- a/packages/astro/src/core/build/static-build.ts +++ b/packages/astro/src/core/build/static-build.ts @@ -3,7 +3,7 @@ import * as eslexer from 'es-module-lexer'; import glob from 'fast-glob'; import fs from 'fs'; import { bgGreen, bgMagenta, black, dim } from 'kleur/colors'; -import { extname, join } from 'node:path'; +import { extname } from 'node:path'; import path from 'path'; import { fileURLToPath } from 'url'; import * as vite from 'vite';