main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
471 bytes
|
Rev | Line | |
---|
[d565449] | 1 | import type { LogHandler, MergedRollupOptions, RollupLog } from './rollup';
|
---|
| 2 |
|
---|
| 3 | export interface BatchWarnings {
|
---|
| 4 | add: (warning: RollupLog) => void;
|
---|
| 5 | readonly count: number;
|
---|
| 6 | flush: () => void;
|
---|
| 7 | log: LogHandler;
|
---|
| 8 | readonly warningOccurred: boolean;
|
---|
| 9 | }
|
---|
| 10 |
|
---|
| 11 | export type LoadConfigFile = typeof loadConfigFile;
|
---|
| 12 |
|
---|
| 13 | export function loadConfigFile(
|
---|
| 14 | fileName: string,
|
---|
| 15 | commandOptions: any,
|
---|
| 16 | watchMode?: boolean
|
---|
| 17 | ): Promise<{
|
---|
| 18 | options: MergedRollupOptions[];
|
---|
| 19 | warnings: BatchWarnings;
|
---|
| 20 | }>;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.