Skip to content

Commit 032519c

Browse files
renovate[bot]bluwy
andauthored
fix(deps): update dependency execa to v8 (#24)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: bluwy <[email protected]>
1 parent e67ab52 commit 032519c

File tree

3 files changed

+20
-19
lines changed

3 files changed

+20
-19
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"release": "tnode scripts/release.ts"
2323
},
2424
"dependencies": {
25-
"execa": "^7.2.0",
25+
"execa": "^8.0.1",
2626
"mri": "^1.2.0",
2727
"picocolors": "^1.0.0",
2828
"prompts": "^2.4.2",

pnpm-lock.yaml

Lines changed: 17 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ export function getPackageInfo(
3838
export async function run(
3939
bin: string,
4040
args: string[],
41-
opts: ExecaOptions<string> = {},
41+
opts: ExecaOptions = {},
4242
): Promise<ExecaReturnValue> {
4343
return execa(bin, args, { stdio: "inherit", ...opts });
4444
}
4545

4646
export async function dryRun(
4747
bin: string,
4848
args: string[],
49-
opts?: ExecaOptions<string>,
49+
opts?: ExecaOptions,
5050
): Promise<void> {
5151
return console.log(
5252
colors.blue(`[dryrun] ${bin} ${args.join(" ")}`),

0 commit comments

Comments
 (0)