File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -210,7 +210,10 @@ export class ProcessPromise extends Promise<ProcessOutput> {
210
210
on : {
211
211
start : ( ) => {
212
212
if ( self . _timeout ) {
213
- const t = setTimeout ( ( ) => self . kill ( self . _timeoutSignal ) , self . _timeout )
213
+ const t = setTimeout (
214
+ ( ) => self . kill ( self . _timeoutSignal ) ,
215
+ self . _timeout
216
+ )
214
217
self . finally ( ( ) => clearTimeout ( t ) ) . catch ( noop )
215
218
}
216
219
} ,
Original file line number Diff line number Diff line change @@ -26,10 +26,7 @@ import * as yaml from 'yaml'
26
26
import * as _fs from 'fs-extra'
27
27
import type { fetch } from 'node-fetch-native'
28
28
29
- export {
30
- exec ,
31
- buildCmd ,
32
- } from 'zurk/spawn'
29
+ export { exec , buildCmd } from 'zurk/spawn'
33
30
34
31
export { fetch as nodeFetch } from 'node-fetch-native'
35
32
export type RequestInfo = Parameters < typeof fetch > [ 0 ]
You can’t perform that action at this time.
0 commit comments