We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f246247 commit fdb11edCopy full SHA for fdb11ed
tools/build.js
@@ -109,6 +109,7 @@ async function vendorDeno() {
109
const destination = join(vendorDest, url.hostname, url.pathname)
110
111
const res = await fetch(url)
112
+ if (!res.ok) throw new Error('Failed to fetch .wasm file to vendor', { cause: err })
113
const fileStream = createWriteStream(destination, { flags: 'wx' })
114
await finished(Readable.fromWeb(res.body).pipe(fileStream))
115
}),
0 commit comments