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 36f13cb commit c13012dCopy full SHA for c13012d
tools/build/transform/index.ts
@@ -25,13 +25,15 @@ import { build as esbuild } from "esbuild"
25
import * as path from "path"
26
import postcss from "postcss"
27
import {
28
+ NEVER,
29
Observable,
30
concat,
31
defer,
32
merge,
33
of
34
} from "rxjs"
35
36
+ catchError,
37
endWith,
38
ignoreElements,
39
switchMap
@@ -130,6 +132,10 @@ export function transformStyle(
130
132
}
131
133
})
134
),
135
+ catchError(err => {
136
+ console.log(err.formatted || err.message)
137
+ return NEVER
138
+ }),
139
switchMap(({ css, map }) => {
140
const file = digest(options.to, css)
141
return concat(
0 commit comments