We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c298e5 commit e154674Copy full SHA for e154674
tools/build/transform/index.ts
@@ -228,6 +228,7 @@ export function transformScript(
228
]
229
}))
230
.pipe(
231
+ catchError(() => EMPTY),
232
switchMap(({ outputFiles: [file] }) => {
233
const contents = file.text.split("\n")
234
const [, data] = contents[contents.length - 2].split(",")
@@ -236,7 +237,6 @@ export function transformScript(
236
237
map: Buffer.from(data, "base64")
238
})
239
}),
- catchError(() => EMPTY),
240
switchMap(({ js, map }) => {
241
const file = digest(options.to, js)
242
return concat(
0 commit comments