A bug that crashes my Elysia backend
Recently I successfully build my elysia Backend but after packaging it in server , when I run it using ./server I get this error:
SyntaxError: Cannot declare a function that shadows a let/const/class/function variable 'i3'.
at <parse> (/$bunfs/root/server:170:1) at native:11:43Bun v1.1.34 (Linux x64)
Then I removed docx from my package.json and everything worked as I found that it's conflicting with prisma dependency
I hope this can be fixed as without the docx I cannot implement my ms word generator
Seems like a problem with bun:
https://github.com/oven-sh/bun/issues/5732
And it's fixed here:
https://github.com/oven-sh/bun/issues/12176
Can you update bun?
Seems like a problem with bun:
https://github.com/oven-sh/bun/issues/5732
And it's fixed here:
https://github.com/oven-sh/bun/issues/12176
Can you update
bun?
Yes but still the same error