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

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

chore: update dependencies

parent dd68af80
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@
        "source-map-support": "^0.5.21"
    },
    "devDependencies": {
        "@types/node": "^22.5.5",
        "@types/node": "^22.7.4",
        "@yume-chan/eslint-config": "workspace:^",
        "@yume-chan/tsconfig": "workspace:^",
        "prettier": "^3.3.3",
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@
        "@yume-chan/struct": "workspace:^"
    },
    "devDependencies": {
        "@types/node": "^22.5.5",
        "@types/node": "^22.7.4",
        "@yume-chan/eslint-config": "workspace:^",
        "@yume-chan/test-runner": "workspace:^",
        "@yume-chan/tsconfig": "workspace:^",
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@
        "@yume-chan/struct": "workspace:^"
    },
    "devDependencies": {
        "@types/node": "^22.5.5",
        "@types/node": "^22.7.4",
        "@yume-chan/eslint-config": "workspace:^",
        "@yume-chan/tsconfig": "workspace:^",
        "prettier": "^3.3.3",
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@
        "@yume-chan/struct": "workspace:^"
    },
    "devDependencies": {
        "@types/node": "^22.5.5",
        "@types/node": "^22.7.4",
        "@yume-chan/eslint-config": "workspace:^",
        "@yume-chan/test-runner": "workspace:^",
        "@yume-chan/tsconfig": "workspace:^",
+2 −0
Original line number Diff line number Diff line
@@ -71,6 +71,7 @@ export const AdbSignatureAuthenticator: AdbAuthenticator = async function* (
    credentialStore: AdbCredentialStore,
    getNextRequest: () => Promise<AdbPacketData>,
): AsyncIterable<AdbPacketData> {
    // eslint-disable-next-line @typescript-eslint/await-thenable
    for await (const key of credentialStore.iterateKeys()) {
        const packet = await getNextRequest();

@@ -99,6 +100,7 @@ export const AdbPublicKeyAuthenticator: AdbAuthenticator = async function* (
    }

    let privateKey: AdbPrivateKey | undefined;
    // eslint-disable-next-line @typescript-eslint/await-thenable
    for await (const key of credentialStore.iterateKeys()) {
        privateKey = key;
        break;
Loading