Skip to content

Commit faea482

Browse files
authored
Fix new eslint issues (#255)
1 parent 755ad76 commit faea482

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export class SyncProcess {
141141
/** Closes down the worker thread and the stdin stream. */
142142
private close(): void {
143143
this.port.close();
144-
this.worker.terminate();
144+
void this.worker.terminate();
145145
this.stdin.destroy();
146146
}
147147
}

0 commit comments

Comments
 (0)