From 3488324f235a8f4af4b44dda438194f013910b14 Mon Sep 17 00:00:00 2001 From: Florian Lefebvre Date: Wed, 26 Mar 2025 09:39:50 +0000 Subject: [PATCH] [ci] format --- packages/astro/src/core/base-pipeline.ts | 2 +- packages/astro/src/core/build/generate.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/astro/src/core/base-pipeline.ts b/packages/astro/src/core/base-pipeline.ts index d2cf1f0535..bbaf7da6cd 100644 --- a/packages/astro/src/core/base-pipeline.ts +++ b/packages/astro/src/core/base-pipeline.ts @@ -1,4 +1,5 @@ import type { ZodType } from 'zod'; +import { NOOP_ACTIONS_MOD } from '../actions/noop-actions.js'; import type { ActionAccept, ActionClient } from '../actions/runtime/virtual/server.js'; import { createI18nMiddleware } from '../i18n/middleware.js'; import type { ComponentInstance } from '../types/astro.js'; @@ -19,7 +20,6 @@ import { NOOP_MIDDLEWARE_FN } from './middleware/noop-middleware.js'; import { sequence } from './middleware/sequence.js'; import { RouteCache } from './render/route-cache.js'; import { createDefaultRoutes } from './routing/default.js'; -import { NOOP_ACTIONS_MOD } from '../actions/noop-actions.js'; /** * The `Pipeline` represents the static parts of rendering that do not change between requests. diff --git a/packages/astro/src/core/build/generate.ts b/packages/astro/src/core/build/generate.ts index c91dc48de3..f612ec7fa0 100644 --- a/packages/astro/src/core/build/generate.ts +++ b/packages/astro/src/core/build/generate.ts @@ -3,6 +3,7 @@ import os from 'node:os'; import { bgGreen, black, blue, bold, dim, green, magenta, red, yellow } from 'kleur/colors'; import PLimit from 'p-limit'; import PQueue from 'p-queue'; +import { NOOP_ACTIONS_MOD } from '../../actions/noop-actions.js'; import { generateImagesForPath, getStaticImageList, @@ -49,7 +50,6 @@ import type { StylesheetAsset, } from './types.js'; import { getTimeStat, shouldAppendForwardSlash } from './util.js'; -import { NOOP_ACTIONS_MOD } from '../../actions/noop-actions.js'; export async function generatePages(options: StaticBuildOptions, internals: BuildInternals) { const generatePagesTimer = performance.now();