Skip to content
This repository was archived by the owner on Nov 15, 2024. It is now read-only.

deps: bump uWebSockets.js #2

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cjs.swcrc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"inlineSourcesContent": true,
"env": {
"targets": {
"node": 16
"node": 18
}
}
}
2 changes: 1 addition & 1 deletion .es.swcrc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"inlineSourcesContent": true,
"env": {
"targets": {
"node": 16
"node": 18
}
}
}
Binary file modified bun.lockb
Binary file not shown.
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@
"dependencies": {
"@sinclair/typebox": "^0.29.4",
"fast-querystring": "^1.1.2",
"uWebSockets.js": "uNetworking/uWebSockets.js#v20.30.0"
"uWebSockets.js": "uNetworking/uWebSockets.js#v20.49.0"
},
"engines": {
"node": ">= 18"
}
}
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const node =
const params: Record<string, string> = {}

for (const [name, index] of ids)
params[name] = req.getParameter(index)
params[name] = req.getParameter(index)!

const request = new Request(`http://a.aa${path}`, {
body:
Expand Down