diff --git a/package-lock.json b/package-lock.json index 14f73a5..b200caa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@athenna/common", - "version": "4.15.1", + "version": "4.15.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@athenna/common", - "version": "4.15.1", + "version": "4.15.2", "license": "MIT", "dependencies": { "@fastify/formbody": "^7.4.0", diff --git a/package.json b/package.json index c8296e3..bd1aa95 100644 --- a/package.json +++ b/package.json @@ -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 ", diff --git a/src/types/CommandOutput.ts b/src/types/CommandOutput.ts index 82c2370..6fb60b9 100644 --- a/src/types/CommandOutput.ts +++ b/src/types/CommandOutput.ts @@ -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