Skip to content

Commit

Permalink
bun added
Browse files Browse the repository at this point in the history
  • Loading branch information
a4arpon committed Nov 3, 2024
1 parent 0c5095f commit 3e8f181
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion node_runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function executeCommand(command, callback) {
}

// Step 1: Install Bun
const installBunCommand = "ls -a && which bun"
const installBunCommand = "which bun"
console.log("Installing Bun...")
executeCommand(installBunCommand, (success, result) => {
if (!success) {
Expand Down
2 changes: 1 addition & 1 deletion vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}
}
],
"buildCommand": "bun run vercel:prod",
"buildCommand": "npm i bun && bun run vercel:prod",
"routes": [
{
"src": "/(.*)",
Expand Down

0 comments on commit 3e8f181

Please sign in to comment.