I am getting this error message when trying to execute my bun function:
TypeScript
Failed to load module: BuildMessage: EISDIR reading "/root/.bun/install/cache/bignumber.js@9.3.1@@@1agent@1.7.2@@@1/bignumber.js"
I am using Bun 1.3 runtime, deployed to cloud, with no other significant issue like a failed build or similar. Any ideas what could be going wrong?
TL;DR
Developers encountering error "Failed to load module: BuildMessage: EISDIR reading "/root/.bun/install/cache/bignumber.js@9.3.1@@@1agent@1.7.2@@@1/bignumber.js"" when running a bun function running Bun 1.3 runtime in the cloud. This issue might be caused due to a corrupted cache file. The solution is to clear the cache for bun and try running the bun function again.Recommended threads
- [Regression] Appwrite 25.1.0 returns Inv...
I've already opened an issue on GitHub, but somewhat it doesn't seem like GitHub is monitored very closely, so I'm leaving a bug report here on Discord as well....
- Helping in unblock my account
I deleted my Appwrite Cloud account that was linked via GitHub. Now I activated my GitHub Student Pack and want to sign up again using the same GitHub account, ...
- Not allowed permission to upsert a prese...
```js const presenceID = ID.unique(); setPID(presenceID); const presence = await presences.upsert({ presenceId: presenceID, status: "online"...