feat: added support for --only flag

This commit is contained in:
Wyatt Johnson
2018-07-04 10:50:10 -06:00
parent 044e1c2863
commit 9afc322314
3 changed files with 29 additions and 4 deletions
+4
View File
@@ -17,6 +17,10 @@ export interface Executor {
execute(filePath: string): void;
}
export interface Options {
only?: string[];
}
export interface Config {
rootDir?: string;
backend?: Watcher;