Skip to content

Commit 1c795f3

Browse files
committed
chore: linting
1 parent 0ba3f47 commit 1c795f3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/core.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,10 @@ export class ProcessPromise extends Promise<ProcessOutput> {
210210
on: {
211211
start: () => {
212212
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+
)
214217
self.finally(() => clearTimeout(t)).catch(noop)
215218
}
216219
},

src/vendor.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,7 @@ import * as yaml from 'yaml'
2626
import * as _fs from 'fs-extra'
2727
import type { fetch } from 'node-fetch-native'
2828

29-
export {
30-
exec,
31-
buildCmd,
32-
} from 'zurk/spawn'
29+
export { exec, buildCmd } from 'zurk/spawn'
3330

3431
export { fetch as nodeFetch } from 'node-fetch-native'
3532
export type RequestInfo = Parameters<typeof fetch>[0]

0 commit comments

Comments
 (0)