@plugjs/plug
Version:
PlugJS Build System ===================
13 lines (12 loc) • 396 B
text/typescript
import type { AbsolutePath } from './paths';
interface CommandLineOptions {
buildFile: AbsolutePath;
watchDirs: string[];
tasks: string[];
props: Record<string, string>;
listOnly: boolean;
}
/** Parse `perocess.argv` and return our normalised command line options */
export declare function parseCommandLine(args: string[]): CommandLineOptions;
export {};