Skip to content

Commit 8a8cc6d

Browse files
authored
Update bun faq section (#52)
* update bun trace trap FAQ * update bun trace trap FAQ
1 parent b7bfc76 commit 8a8cc6d

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

docs/pages/build/faq.mdx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,17 @@ After this, depending on Sepolia's network congestion, it may take 10-30s to sub
1818
:::
1919

2020
:::details[Getting `trace trap` when using Bun?]
21-
If you are getting `trace trap` error when using Bun. This is a known issue with Bun and SQLite, which got live with `v1.1.27` of bun. [More details here](https://discord.com/channels/876711213126520882/1282959007589601280/1283307017158791222).
21+
If you are getting `trace trap` error when using Bun. This is a known issue with Bun and SQLite, which got introduced in `v1.1.27` of bun. [More details here](https://discord.com/channels/876711213126520882/1282959007589601280/1283307017158791222).
2222

23-
Moving forward we recommend using `tsx` over `bun` for development.
24-
If you want to continue using `bun`, you can downgrade to `v1.1.26` by running:
23+
They've fixed the issue in `v1.1.28` and you can upgrade by running:
2524

2625
```bash
27-
curl -fsSl https://bun.sh/install | bash -s "bun-v1.1.26"
26+
bun upgrade
27+
bun --version # check that you are on version >= 1.1.28
2828
```
29+
30+
However, moving forward we recommend using `tsx` over `bun run` for running the MRU server. You may still use Bun for package management.
31+
2932
:::
3033

3134
If you have any more questions, please reach out to us on our [Discord](https://discord.stackrlabs.xyz/) server.

0 commit comments

Comments
 (0)