Skip to content

Commit

Permalink
fix(deps): update dependency execa to v8 (#24)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: bluwy <bjornlu.dev@gmail.com>
  • Loading branch information
renovate[bot] and bluwy committed Aug 25, 2023
1 parent e67ab52 commit 032519c
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 19 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"release": "tnode scripts/release.ts"
},
"dependencies": {
"execa": "^7.2.0",
"execa": "^8.0.1",
"mri": "^1.2.0",
"picocolors": "^1.0.0",
"prompts": "^2.4.2",
Expand Down
33 changes: 17 additions & 16 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ export function getPackageInfo(
export async function run(
bin: string,
args: string[],
opts: ExecaOptions<string> = {},
opts: ExecaOptions = {},
): Promise<ExecaReturnValue> {
return execa(bin, args, { stdio: "inherit", ...opts });
}

export async function dryRun(
bin: string,
args: string[],
opts?: ExecaOptions<string>,
opts?: ExecaOptions,
): Promise<void> {
return console.log(
colors.blue(`[dryrun] ${bin} ${args.join(" ")}`),
Expand Down

0 comments on commit 032519c

Please sign in to comment.