Skip to content

Commit 9822017

Browse files
committed
chore(deps): update resolutions @types/node to v24
1 parent b6179fd commit 9822017

File tree

4 files changed

+211
-187
lines changed

4 files changed

+211
-187
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173
"@nuxt/kit": "^4.1.3",
174174
"@nuxt/schema": "4.1.3",
175175
"@nuxt/test-utils": "workspace:*",
176-
"@types/node": "22.18.8",
176+
"@types/node": "24.10.1",
177177
"rollup": "4.53.2",
178178
"vite": "7.2.2",
179179
"vite-node": "3.2.4",

patches/node-mock-http.patch

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
diff --git a/dist/index.d.mts b/dist/index.d.mts
2+
index 8e3c18d3c60427217933885ae59e5bedc7b6cf8a..fcccc13bfd36e4752f06429a00eaf09e2b73475b 100644
3+
--- a/dist/index.d.mts
4+
+++ b/dist/index.d.mts
5+
@@ -20,9 +20,9 @@ declare class Socket extends Duplex implements NodeNet.Socket {
6+
readonly pending: boolean;
7+
readonly localAddress: string;
8+
readonly localPort: number;
9+
- readonly remoteAddress?: string;
10+
- readonly remoteFamily?: string;
11+
- readonly remotePort?: number;
12+
+ readonly remoteAddress: string | undefined;
13+
+ readonly remoteFamily: string | undefined;
14+
+ readonly remotePort: number | undefined;
15+
readonly autoSelectFamilyAttemptedAddresses: never[];
16+
readonly readyState: NodeNet.SocketReadyState;
17+
constructor(_options?: NodeNet.SocketConstructorOpts);

0 commit comments

Comments
 (0)