Skip to content

chore(deps): bump typescript from 5.6.2 to 5.8.3 #302

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
9 changes: 5 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@
"react-icons": "5.0.1",
"react-router-dom": "6.26.2",
"react-select": "5.9.0",
"typescript": "5.6.2",
"typescript": "5.8.3",
"web-vitals": "4.2.4"
},
"scripts": {

Unchanged files with check annotations Beta

if (!this.php.fileExists(fsPath)) {
return {
body: new TextEncoder().encode('404 File not found'),

Check failure on line 133 in src/php-wasm/php-server.ts

GitHub Actions / build

Type 'Uint8Array<ArrayBufferLike>' is missing the following properties from type 'ArrayBuffer': maxByteLength, resizable, resize, detached, and 2 more.
headers: {},
httpStatusCode: 404,
exitCode: 0,
}
const arrayBuffer = this.php.readFileAsBuffer(fsPath);
return {
body: arrayBuffer,

Check failure on line 142 in src/php-wasm/php-server.ts

GitHub Actions / build

Type 'Uint8Array<ArrayBufferLike>' is missing the following properties from type 'ArrayBuffer': maxByteLength, resizable, resize, detached, and 2 more.
headers: {
'content-length': `${arrayBuffer.byteLength}`,
// @TODO: Infer the content-type from the arrayBuffer instead of the file path.
return {
exitCode,
body: this.readFileAsBuffer('/tmp/stdout'),

Check failure on line 565 in src/php-wasm/php.ts

GitHub Actions / build

Type 'Uint8Array<ArrayBufferLike>' is missing the following properties from type 'ArrayBuffer': maxByteLength, resizable, resize, detached, and 2 more.
errors: this.readFileAsText('/tmp/stderr'),
...this.#getResponseHeaders(),
};