Skip to content

Commit

Permalink
Merge pull request #83 from AthennaIO/develop
Browse files Browse the repository at this point in the history
fix(types): return right type of execa
  • Loading branch information
jlenon7 committed Sep 24, 2023
2 parents 47bb62b + cea3b6b commit 8ca140f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@athenna/common",
"version": "4.15.1",
"version": "4.15.2",
"description": "The Athenna common helpers to use in any Node.js ESM project.",
"license": "MIT",
"author": "João Lenon <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions src/types/CommandOutput.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
* file that was distributed with this source code.
*/

import type { ExecaChildProcess } from 'execa'
import type { ExecaReturnValue } from 'execa'

export type CommandOutput = ExecaChildProcess
export type CommandOutput = ExecaReturnValue<string>

0 comments on commit 8ca140f

Please sign in to comment.