Skip to content

Commit 52c3c03

Browse files
committed
Update changelog
1 parent 04d0764 commit 52c3c03

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 7.0.1
2+
3+
## Dependencies
4+
5+
- Upgrade Execa to
6+
[`9.2.0`](https://github.com/sindresorhus/execa/releases/tag/v9.2.0)
7+
18
# 7.0.0
29

310
## Breaking changes

src/main.test-d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import type { Writable, Transform } from 'node:stream'
1+
import type { Readable, Transform } from 'node:stream'
22

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

88
const childProcess = exec('command')
9-
expectType<Writable>(childProcess.stdout)
9+
expectType<Readable>(childProcess.stdout)
1010
const execResult = await childProcess
1111
expectType<number | undefined>(execResult.exitCode)
1212

0 commit comments

Comments
 (0)