From 275d0d1683353eb53bc6ed9ee7f67c657aecffa4 Mon Sep 17 00:00:00 2001 From: ematipico Date: Tue, 27 Jun 2023 11:00:40 +0000 Subject: [PATCH] [ci] format --- packages/astro/CHANGELOG.md | 18 +++++++++--------- packages/astro/src/core/build/static-build.ts | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 26b000ee06..47aec886db 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 0be7f87395..59a42db344 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';