Skip to content

Commit

Permalink
style: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
antongolub committed Oct 3, 2024
1 parent 9a20c07 commit ae0d61c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/main/ts/mixin/pipe.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { Writable } from 'node:stream'
import EventEmitter from 'node:events'
import { assign, isStringLiteral } from '../util.js'
import { VoidStream } from '../spawn.js'
import type { TShell, TMixin, TShellCtx } from '../x.js'
Expand Down
4 changes: 2 additions & 2 deletions src/main/ts/spawn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ export const invoke = (c: TSpawnCtxNormalized): TSpawnCtxNormalized => {
get stdout() { return c.store.stdout.join('') },
get stderr() { return c.store.stderr.join('') },
get stdall() { return c.store.stdall.join('') },
stdio: [c.stdin, c.stdout, c.stderr],
stdio,
duration: Date.now() - now,
ctx: c
}
Expand All @@ -249,7 +249,7 @@ export const invoke = (c: TSpawnCtxNormalized): TSpawnCtxNormalized => {
} catch (error: unknown) {
c.callback(
error,
c.fulfilled ={
c.fulfilled = {
error,
status: null,
signal: null,
Expand Down

0 comments on commit ae0d61c

Please sign in to comment.