Clean up dependencies
All checks were successful
Build and Push / build (push) Successful in 18s

This commit is contained in:
2026-02-16 15:12:59 -05:00
parent d181f77fb2
commit 2f15523a55
14941 changed files with 0 additions and 2078483 deletions

View File

@@ -1,15 +0,0 @@
import nodeFs from 'node:fs';
import * as vite from 'vite';
import type { AstroSettings } from '../@types/astro.js';
import type { Logger } from './logger/core.js';
interface CreateViteOptions {
settings: AstroSettings;
logger: Logger;
mode: 'dev' | 'build' | string;
command?: 'dev' | 'build';
fs?: typeof nodeFs;
sync: boolean;
}
/** 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 }: CreateViteOptions): Promise<vite.InlineConfig>;
export {};