Skip to content

Commit

Permalink
chore(deps): update dependency execa to v8 (#14166)
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 authored Aug 22, 2023
1 parent 61e801d commit dfde97f
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-regexp": "^1.15.0",
"execa": "^7.2.0",
"execa": "^8.0.1",
"fast-glob": "^3.3.1",
"fs-extra": "^11.1.1",
"lint-staged": "^14.0.1",
Expand Down
34 changes: 32 additions & 2 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 scripts/releaseUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import fs from 'fs-extra'
export async function run(
bin: string,
args: string[],
opts: ExecaOptions<string> = {},
): Promise<ExecaReturnValue<string>> {
opts: ExecaOptions = {},
): Promise<ExecaReturnValue> {
return execa(bin, args, { stdio: 'inherit', ...opts })
}

Expand Down

0 comments on commit dfde97f

Please sign in to comment.