Skip to content

Commit e345f67

Browse files
committed
Chore(*): Bump dependencies
1 parent a9b7e61 commit e345f67

28 files changed

+113
-116
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@
7171
"type-fest": "^4.0.0"
7272
},
7373
"devDependencies": {
74-
"@eslint/js": "^9.17.0",
74+
"@eslint/js": "^9.18.0",
7575
"@repo/hoist-peer-dependencies": "workspace:*",
7676
"@repo/tsconfig": "workspace:*",
77-
"@types/node": "^22.10.2",
77+
"@types/node": "^22.10.5",
7878
"@vitest/coverage-v8": "^2.1.8",
7979
"@vitest/ui": "^2.1.8",
80-
"eslint": "^9.17.0",
80+
"eslint": "^9.18.0",
8181
"eslint-config-prettier": "^9.1.0",
8282
"eslint-plugin-n": "^17.15.1",
8383
"eslint-plugin-prettier": "^5.2.1",
@@ -90,8 +90,8 @@
9090
"prettier": "^3.4.2",
9191
"ts-node": "^10.9.2",
9292
"turbo": "^2.3.3",
93-
"typescript": "^5.7.2",
94-
"typescript-eslint": "^8.18.1",
93+
"typescript": "^5.7.3",
94+
"typescript-eslint": "^8.19.1",
9595
"vitest": "^2.1.8"
9696
},
9797
"packageManager": "[email protected]+sha512.3003a14012e2987072d244c720506549c1aab73ee728208f1b2580a9fd67b92d61ba6b08fe93f6dce68fd771e3af1e59a0afa28dd242dd0940d73b95fedd4e90",

packages/core/core.test.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,6 @@ describe('createPrompt()', () => {
449449
message: 'Question',
450450
});
451451

452-
// eslint-disable-next-line @typescript-eslint/no-deprecated
453452
answer.cancel();
454453
events.keypress('enter');
455454

@@ -579,9 +578,8 @@ it('allow cancelling the prompt multiple times', async () => {
579578
const prompt = createPrompt(Prompt);
580579
const { answer, events } = await render(prompt, { message: 'Question' });
581580

582-
// eslint-disable-next-line @typescript-eslint/no-deprecated
583581
answer.cancel();
584-
// eslint-disable-next-line @typescript-eslint/no-deprecated
582+
585583
answer.cancel();
586584
events.keypress('enter');
587585

packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
"@inquirer/testing": "^2.1.39",
9090
"@repo/tsconfig": "workspace:*",
9191
"@types/mute-stream": "^0.0.4",
92-
"@types/node": "^22.10.2",
92+
"@types/node": "^22.10.5",
9393
"@types/wrap-ansi": "^3.0.0",
9494
"tshy": "^3.0.2"
9595
},

packages/core/src/lib/create-prompt.ts

-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ export function createPrompt<Value, Config>(view: ViewFunction<Value, Config>) {
5353
const screen = new ScreenManager(rl);
5454

5555
const { promise, resolve, reject } = PromisePolyfill.withResolver<Value>();
56-
/** @deprecated pass an AbortSignal in the context options instead. See {@link https://github.com/SBoudrias/Inquirer.js#canceling-prompt} */
5756
const cancel = () => reject(new CancelPromptError());
5857

5958
if (signal) {

packages/demo/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
},
7878
"devDependencies": {
7979
"@repo/tsconfig": "workspace:*",
80-
"@types/node": "^22.10.2",
80+
"@types/node": "^22.10.5",
8181
"tshy": "^3.0.2"
8282
},
8383
"engines": {

packages/inquirer/src/types.ts

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/* eslint-disable @typescript-eslint/no-duplicate-type-constituents */
2-
/* eslint-disable @typescript-eslint/no-redundant-type-constituents */
31
/* eslint-disable @typescript-eslint/no-explicit-any */
42
import {
53
checkbox,

packages/inquirer/src/ui/prompt.ts

-1
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,6 @@ export default class PromptsRunner<A extends Answers> {
362362
cleanupSignal = undefined;
363363
};
364364

365-
// eslint-disable-next-line @typescript-eslint/use-unknown-in-catch-callback-variable
366365
activePrompt.run().then(resolve, reject).finally(cleanup);
367366
})
368367
: prompt;

packages/testing/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
"@arethetypeswrong/cli": "^0.17.2",
8787
"@repo/tsconfig": "workspace:*",
8888
"@types/mute-stream": "^0.0.4",
89-
"@types/node": "^22.10.2",
89+
"@types/node": "^22.10.5",
9090
"tshy": "^3.0.2"
9191
},
9292
"engines": {

0 commit comments

Comments
 (0)