Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit b0bd64c1 authored by Simon Chan's avatar Simon Chan
Browse files

chore: update dependencies

parent 97566445
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -41,10 +41,10 @@
        "source-map-support": "^0.5.21"
    },
    "devDependencies": {
        "@types/node": "^24.0.15",
        "@types/node": "^24.1.0",
        "@yume-chan/eslint-config": "workspace:^",
        "@yume-chan/tsconfig": "workspace:^",
        "prettier": "^3.6.2",
        "typescript": "^5.8.3"
        "typescript": "^5.9.2"
    }
}
+3 −2
Original line number Diff line number Diff line
@@ -30,12 +30,13 @@
        "prepublishOnly": "npm run build"
    },
    "dependencies": {
        "@yume-chan/adb": "workspace:^"
        "@yume-chan/adb": "workspace:^",
        "@yume-chan/async": "^4.1.3"
    },
    "devDependencies": {
        "@yume-chan/eslint-config": "workspace:^",
        "@yume-chan/tsconfig": "workspace:^",
        "prettier": "^3.6.2",
        "typescript": "^5.8.3"
        "typescript": "^5.9.2"
    }
}
+2 −2
Original line number Diff line number Diff line
@@ -39,11 +39,11 @@
        "@yume-chan/struct": "workspace:^"
    },
    "devDependencies": {
        "@types/node": "^24.0.15",
        "@types/node": "^24.1.0",
        "@yume-chan/eslint-config": "workspace:^",
        "@yume-chan/test-runner": "workspace:^",
        "@yume-chan/tsconfig": "workspace:^",
        "prettier": "^3.6.2",
        "typescript": "^5.8.3"
        "typescript": "^5.9.2"
    }
}
+13 −1
Original line number Diff line number Diff line
@@ -142,9 +142,21 @@ export class AdbDaemonWebUsbConnection
                new MaybeConsumable.WritableStream({
                    write: async (chunk) => {
                        try {
                            if (
                                typeof SharedArrayBuffer !== "undefined" &&
                                chunk.buffer instanceof SharedArrayBuffer
                            ) {
                                // Copy data to a non-shared ArrayBuffer
                                const copy = new Uint8Array(chunk.byteLength);
                                copy.set(chunk);
                                chunk = copy;
                            }

                            await device.raw.transferOut(
                                outEndpoint.endpointNumber,
                                chunk,
                                // Already checked `chunk` has a non-shared ArrayBuffer
                                // https://github.com/WICG/webusb/issues/243
                                chunk as Uint8Array<ArrayBuffer>,
                            );

                            // In USB protocol, a not-full packet indicates the end of a transfer.
+2 −2
Original line number Diff line number Diff line
@@ -41,11 +41,11 @@
        "@yume-chan/struct": "workspace:^"
    },
    "devDependencies": {
        "@types/node": "^24.0.15",
        "@types/node": "^24.1.0",
        "@yume-chan/eslint-config": "workspace:^",
        "@yume-chan/test-runner": "workspace:^",
        "@yume-chan/tsconfig": "workspace:^",
        "prettier": "^3.6.2",
        "typescript": "^5.8.3"
        "typescript": "^5.9.2"
    }
}
Loading