mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 00:18:19 +01:00
refactor: 🔥 Remove old pre Bun 1.2 compile error check
Bun 1.2 now default to actually throwing an error instead of always succeeding
This commit is contained in:
parent
bf071c1b27
commit
1d2ea36fac
|
|
@ -11,11 +11,6 @@ await Bun.build({
|
|||
target: "bun",
|
||||
splitting: true,
|
||||
minify: false,
|
||||
}).then((output) => {
|
||||
if (!output.success) {
|
||||
console.error(output.logs);
|
||||
throw new Error("Build failed");
|
||||
}
|
||||
});
|
||||
|
||||
buildSpinner.text = "Transforming";
|
||||
|
|
|
|||
Loading…
Reference in a new issue