Skip to content

Commit af53118

Browse files
build: throw build error instead of silent fail
1 parent 9c3c9f0 commit af53118

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

esbuild.config.prod.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ buildsConfig.forEach(({ format, outfile, minify }) => {
7171
)
7272
})
7373

74-
await Promise.allSettled(builds)
74+
await Promise.all(builds)
7575

7676
// Remove all unecessary or duplicated files from `dist` folder after build
7777
fs.unlink('./dist/react-tooltip.cjs.css', () => null) // generated by cjs build

0 commit comments

Comments
 (0)