25 lines
895 B
TypeScript
25 lines
895 B
TypeScript
|
|
import nodeFs from 'node:fs';
|
||
|
|
import * as vite from 'vite';
|
||
|
|
import type { AstroSettings, RoutesList } from '../types/astro.js';
|
||
|
|
import type { AstroLogger } from './logger/core.js';
|
||
|
|
type CreateViteOptions = {
|
||
|
|
settings: AstroSettings;
|
||
|
|
logger: AstroLogger;
|
||
|
|
mode: string;
|
||
|
|
fs?: typeof nodeFs;
|
||
|
|
routesList: RoutesList;
|
||
|
|
sync: boolean;
|
||
|
|
} & ({
|
||
|
|
command: 'dev';
|
||
|
|
} | {
|
||
|
|
command: 'build';
|
||
|
|
});
|
||
|
|
/**
|
||
|
|
* Clear the crawlFrameworkPkgs cache. Call this when node_modules may have
|
||
|
|
* changed (e.g. after a dev server restart triggered by config/lockfile change).
|
||
|
|
*/
|
||
|
|
export declare function clearCrawlCache(): void;
|
||
|
|
/** Return a base vite config as a common starting point for all Vite commands. */
|
||
|
|
export declare function createVite(commandConfig: vite.InlineConfig, { settings, logger, mode, command, fs, sync, routesList }: CreateViteOptions): Promise<vite.InlineConfig>;
|
||
|
|
export {};
|