[CORL-1074] Upgrade dependencies (#2999)

* chore: upgrade eslint, typescript

* chore: upgrade deps

* chore: revert upgrade ts-node-dev

* chore: revert unneeded comments

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
Vinh
2020-06-26 22:38:52 +00:00
committed by GitHub
co-authored by kodiakhq[bot]
parent 0db5bc846d
commit 2acc761a5d
104 changed files with 6367 additions and 5509 deletions
+2 -2
View File
@@ -99,14 +99,14 @@ export default class LongRunningExecutor implements Executor {
}
// This is called before exiting.
public async onCleanup() {
public async onCleanup(): Promise<void> {
this.restartDebounced.cancel();
if (this.isRunning) {
await this.kill();
}
}
public execute(filePath: string) {
public execute(filePath: string): void {
if (this.isRunning) {
this.restartDebounced();
return;