dont ignore patch failures

This commit is contained in:
Vitaly Turovsky 2025-06-26 04:34:08 +03:00
commit 3a7f267b5b
2 changed files with 5 additions and 1 deletions

View file

@ -227,7 +227,9 @@
"cypress",
"esbuild",
"fsevents"
]
],
"ignorePatchFailures": false,
"allowUnusedPatches": false
},
"packageManager": "pnpm@10.8.0+sha512.0e82714d1b5b43c74610193cb20734897c1d00de89d0e18420aebc5977fa13d780a9cb05734624e81ebd81cc876cd464794850641c48b9544326b5622ca29971"
}

View file

@ -22,6 +22,8 @@ export const getWebsocketStream = async (host: string) => {
ws.send(data)
})
clientDuplex.on('error', () => {})
ws.addEventListener('message', async message => {
let { data } = message
if (data instanceof Blob) {