Skip to content

Commit 1a66049

Browse files
authored
@types/node update (#1075)
1 parent 721c21b commit 1a66049

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"@types/js-yaml": "^4.0.9",
6262
"@types/mocha": "^10.0.10",
6363
"@types/ncp": "^2.0.8",
64-
"@types/node": "^18.19.75",
64+
"@types/node": "^18.19.127",
6565
"@types/pull-stream": "^3.6.7",
6666
"@types/recursive-readdir": "^2.2.4",
6767
"@types/semver": "^7.5.8",

src/test/testUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export interface ExecResult {
3939
stderr: string;
4040
}
4141

42-
export function shellExec(command: string, options: cp.ExecOptions = {}, suppressOutput: boolean = false, doNotThrow: boolean = false): Promise<ExecResult> {
42+
export function shellExec(command: string, options: cp.ExecOptionsWithStringEncoding = {}, suppressOutput: boolean = false, doNotThrow: boolean = false): Promise<ExecResult> {
4343
return new Promise<ExecResult>((resolve, reject) => {
4444
cp.exec(command, options, (error, stdout, stderr) => {
4545
if (!suppressOutput) {

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -353,10 +353,10 @@
353353
dependencies:
354354
undici-types "~6.20.0"
355355

356-
"@types/node@^18.19.75":
357-
version "18.19.112"
358-
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.112.tgz#cd2aee9c075402e0e1942a44101428881dbeb110"
359-
integrity sha512-i+Vukt9POdS/MBI7YrrkkI5fMfwFtOjphSmt4WXYLfwqsfr6z/HdCx7LqT9M7JktGob8WNgj8nFB4TbGNE4Cog==
356+
"@types/node@^18.19.127":
357+
version "18.19.127"
358+
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.127.tgz#7c2e47fa79ad7486134700514d4a975c4607f09d"
359+
integrity sha512-gSjxjrnKXML/yo0BO099uPixMqfpJU0TKYjpfLU7TrtA2WWDki412Np/RSTPRil1saKBhvVVKzVx/p/6p94nVA==
360360
dependencies:
361361
undici-types "~5.26.4"
362362

0 commit comments

Comments
 (0)