- Full-featured monitoring dashboard for local web apps - Real-time status tracking with uptime percentages - Visual sparklines for status history - Add/Edit/Delete apps dynamically - Categories and color coding - Auto-refresh every 30 seconds - API endpoints for apps and status management
15 lines
538 B
TypeScript
15 lines
538 B
TypeScript
import { webpack } from 'next/dist/compiled/webpack/webpack';
|
|
import type { Span } from '../trace';
|
|
export type CompilerResult = {
|
|
errors: webpack.StatsError[];
|
|
warnings: webpack.StatsError[];
|
|
stats: webpack.Stats | undefined;
|
|
};
|
|
export declare function runCompiler(config: webpack.Configuration, { runWebpackSpan, inputFileSystem, }: {
|
|
runWebpackSpan: Span;
|
|
inputFileSystem?: webpack.Compiler['inputFileSystem'];
|
|
}): Promise<[
|
|
result: CompilerResult,
|
|
inputFileSystem?: webpack.Compiler['inputFileSystem']
|
|
]>;
|