Alias to run the project without building. Dependency upgrade.

This commit is contained in:
Daniel Scalzi
2021-02-19 17:38:40 -05:00
parent 9ead2ca219
commit 5c9e44db91
4 changed files with 285 additions and 306 deletions

View File

@@ -11,7 +11,7 @@ export abstract class JarExecutor<T> {
protected stdoutListeners: ((chunk: any) => void)[] = []
// eslint-disable-next-line @typescript-eslint/no-explicit-any
protected stderrListeners: ((chunk: any) => void)[] = []
protected onCloseListeners: ((code: number) => Promise<void>)[] = []
protected onCloseListeners: ((code: number | null) => Promise<void>)[] = []
protected lastExecutionResult!: T