mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
[ci] format
This commit is contained in:
parent
5b14d33f81
commit
3488324f23
2 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue