@linzumi/cli 0.0.32-beta → 0.0.33-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.js +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -4458,6 +4458,7 @@ function openLocalWebSocket(control, sockets, pushEvent, scheme) {
|
|
|
4458
4458
|
const url = localForwardUrl(scheme === "ws" ? "http" : "https", control.port, control.path, control.queryString).replace(/^http/, scheme);
|
|
4459
4459
|
const protocols = webSocketProtocols(control.headers);
|
|
4460
4460
|
const websocket = protocols === undefined ? new WebSocket(url) : new WebSocket(url, protocols);
|
|
4461
|
+
websocket.binaryType = "arraybuffer";
|
|
4461
4462
|
sockets.set(control.socketId, websocket);
|
|
4462
4463
|
websocket.addEventListener("open", () => {
|
|
4463
4464
|
opened = true;
|
|
@@ -8922,7 +8923,7 @@ async function main(args) {
|
|
|
8922
8923
|
process.stdout.write(connectGuideText());
|
|
8923
8924
|
return;
|
|
8924
8925
|
case "version":
|
|
8925
|
-
process.stdout.write(`linzumi 0.0.
|
|
8926
|
+
process.stdout.write(`linzumi 0.0.33-beta
|
|
8926
8927
|
`);
|
|
8927
8928
|
return;
|
|
8928
8929
|
case "auth":
|
|
@@ -9435,7 +9436,7 @@ async function parseRunnerArgs(args, deps = {
|
|
|
9435
9436
|
process.exit(0);
|
|
9436
9437
|
}
|
|
9437
9438
|
if (values.get("version") === true) {
|
|
9438
|
-
process.stdout.write(`linzumi 0.0.
|
|
9439
|
+
process.stdout.write(`linzumi 0.0.33-beta
|
|
9439
9440
|
`);
|
|
9440
9441
|
process.exit(0);
|
|
9441
9442
|
}
|
package/package.json
CHANGED