Skip to content

Commit d49104a

Browse files
committed
Update dependencies
1 parent 0853f74 commit d49104a

File tree

3 files changed

+13
-14
lines changed

3 files changed

+13
-14
lines changed

lib/arguments/shell.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@
99
export const concatenateShell = (file, commandArguments, options) => options.shell && commandArguments.length > 0
1010
? [[file, ...commandArguments].join(' '), [], options]
1111
: [file, commandArguments, options];
12-

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -52,33 +52,33 @@
5252
],
5353
"dependencies": {
5454
"@sindresorhus/merge-streams": "^4.0.0",
55-
"cross-spawn": "^7.0.3",
55+
"cross-spawn": "^7.0.6",
5656
"figures": "^6.1.0",
5757
"get-stream": "^9.0.0",
58-
"human-signals": "^8.0.0",
58+
"human-signals": "^8.0.1",
5959
"is-plain-obj": "^4.1.0",
6060
"is-stream": "^4.0.1",
6161
"npm-run-path": "^6.0.0",
62-
"pretty-ms": "^9.0.0",
62+
"pretty-ms": "^9.2.0",
6363
"signal-exit": "^4.1.0",
6464
"strip-final-newline": "^4.0.0",
65-
"yoctocolors": "^2.0.0"
65+
"yoctocolors": "^2.1.1"
6666
},
6767
"devDependencies": {
68-
"@types/node": "^22.1.0",
69-
"ava": "^6.0.1",
70-
"c8": "^10.1.2",
71-
"get-node": "^15.0.0",
68+
"@types/node": "^22.15.21",
69+
"ava": "^6.3.0",
70+
"c8": "^10.1.3",
71+
"get-node": "^15.0.3",
7272
"is-in-ci": "^1.0.0",
7373
"is-running": "^2.1.0",
7474
"log-process-errors": "^12.0.1",
7575
"path-exists": "^5.0.0",
7676
"path-key": "^4.0.0",
7777
"tempfile": "^5.0.0",
78-
"tsd": "^0.31.0",
79-
"typescript": "^5.4.5",
78+
"tsd": "^0.32.0",
79+
"typescript": "^5.8.3",
8080
"which": "^5.0.0",
81-
"xo": "^0.59.3"
81+
"xo": "^0.60.0"
8282
},
8383
"c8": {
8484
"reporter": [

test/helpers/override-promise.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// Can't use `test.before`, because `ava` needs `Promise`.
22
const nativePromise = Promise;
3-
global.Promise = class BrokenPromise {
3+
globalThis.Promise = class BrokenPromise {
44
then() { // eslint-disable-line unicorn/no-thenable
55
throw new Error('error');
66
}
77
};
88

99
export function restorePromise() {
10-
global.Promise = nativePromise;
10+
globalThis.Promise = nativePromise;
1111
}

0 commit comments

Comments
 (0)