mirror of
https://github.com/yume-chan/ya-webadb.git
synced 2025-10-03 17:59:50 +02:00
chore: update dependencies
This commit is contained in:
parent
2abec924e8
commit
433f9b986f
150 changed files with 1690 additions and 1507 deletions
|
@ -92,7 +92,7 @@ export class AdbDaemonSocketController
|
|||
await this.dispatcher.sendPacket(
|
||||
AdbCommand.Close,
|
||||
this.localId,
|
||||
this.remoteId
|
||||
this.remoteId,
|
||||
);
|
||||
|
||||
// Don't `dispose` here, we need to wait for `CLSE` response packet.
|
||||
|
@ -114,8 +114,8 @@ export class AdbDaemonSocketController
|
|||
size(chunk) {
|
||||
return chunk.byteLength;
|
||||
},
|
||||
}
|
||||
)
|
||||
},
|
||||
),
|
||||
);
|
||||
|
||||
this.writable = pipeFrom(
|
||||
|
@ -128,13 +128,13 @@ export class AdbDaemonSocketController
|
|||
AdbCommand.Write,
|
||||
this.localId,
|
||||
this.remoteId,
|
||||
chunk
|
||||
chunk,
|
||||
);
|
||||
await this.#writePromise.promise;
|
||||
},
|
||||
})
|
||||
}),
|
||||
),
|
||||
new DistributionStream(this.dispatcher.options.maxPayloadSize)
|
||||
new DistributionStream(this.dispatcher.options.maxPayloadSize),
|
||||
);
|
||||
|
||||
this._socket = new AdbDaemonSocket(this);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue