Skip to content

Commit 8f19c08

Browse files
committed
refactor: remove try...catch
1 parent 68c9214 commit 8f19c08

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

build.mjs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,4 @@ async function buildUI(...apps) {
7979
}
8080
}
8181

82-
try {
83-
await Promise.allSettled([buildExtension(), buildUI('ing', 'post-cfg')])
84-
} catch (ex) {
85-
// eslint-disable-next-line no-undef
86-
console.error(ex)
87-
process.exit(1)
88-
}
82+
await Promise.allSettled([buildExtension(), buildUI('ing', 'post-cfg')])

0 commit comments

Comments
 (0)