update readme

This commit is contained in:
2020-07-08 00:17:25 +00:00
parent d81a8006b1
commit aa3f1eb21f
13 changed files with 87 additions and 107 deletions

View File

@@ -1,7 +1,6 @@
import * as plugins from './tapbundle.plugins';
import { TapTools } from './tapbundle.classes.taptools';
export interface IPreTaskFunction {
(tapTools?: TapTools): Promise<any>;
}
@@ -15,8 +14,8 @@ export class PreTask {
this.preTaskFunction = preTaskFunctionArg;
}
public async run () {
public async run() {
console.log(`::__PRETASK: ${this.description}`);
await this.preTaskFunction(new TapTools(null));
}
}
}