snowpack
Version:
The ESM-powered frontend build tool. Fast, lightweight, unbundled.
12 lines (11 loc) • 537 B
TypeScript
export * from './types';
export { startServer } from './commands/dev';
export { build } from './commands/build';
export { loadConfiguration, createConfiguration } from './config.js';
export { readLockfile as loadLockfile } from './util.js';
export { getUrlForFile } from './build/file-urls';
export { logger } from './logger';
export declare function startDevServer(): void;
export declare function buildProject(): void;
export declare function loadAndValidateConfig(): void;
export declare function cli(args: string[]): Promise<never>;