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 5fc0b10 commit 1f56dbeCopy full SHA for 1f56dbe
lib/install/bun/bun.config.js
@@ -8,7 +8,13 @@ const config = {
8
};
9
10
const build = async (config) => {
11
- const result = await Bun.build(config);
+ let result;
12
+
13
+ try {
14
+ result = await Bun.build(config);
15
+ } catch (error) {
16
+ result = { success: false, logs: error.errors };
17
+ }
18
19
if (!result.success) {
20
if (process.argv.includes('--watch')) {
0 commit comments