Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Jun 9, 2024
1 parent 04d0764 commit 52c3c03
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 7.0.1

## Dependencies

- Upgrade Execa to
[`9.2.0`](https://github.com/sindresorhus/execa/releases/tag/v9.2.0)

# 7.0.0

## Breaking changes
Expand Down
4 changes: 2 additions & 2 deletions src/main.test-d.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import type { Writable, Transform } from 'node:stream'
import type { Readable, Transform } from 'node:stream'

import { exec, task, stream, type Options } from 'gulp-execa'
import { expectType, expectAssignable, expectNotAssignable } from 'tsd'
// eslint-disable-next-line n/no-extraneous-import, @typescript-eslint/no-shadow
import type File from 'vinyl'

const childProcess = exec('command')
expectType<Writable>(childProcess.stdout)
expectType<Readable>(childProcess.stdout)
const execResult = await childProcess
expectType<number | undefined>(execResult.exitCode)

Expand Down

0 comments on commit 52c3c03

Please sign in to comment.