chore: fix type errors and update bun sql syntax
This commit is contained in:
parent
b9fe32053c
commit
ae2455e73e
9 changed files with 325 additions and 398 deletions
|
|
@ -72,4 +72,14 @@ if (process.env.NODE_ENV === "production") {
|
|||
console.log(stdout.split("\n")[0]);
|
||||
}
|
||||
});
|
||||
|
||||
exec("bun -v", (error, stdout) => {
|
||||
if (error) {
|
||||
console.error("Bun is not installed. wait what");
|
||||
}
|
||||
|
||||
if (stdout) {
|
||||
console.log(`Bun v${stdout.split("\n")[0]}`);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue