-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bun --bun run dev
exits silently from 3.7.0
#150
Comments
oven-sh/bun#4468 The good news is that IPC is being worked on heavily here and looks like it will be released soon. |
that pr will fix things, so long as you don't do anything too wacky with the |
I will be working on a non-forked mode of dev command to unblock this in meantime. BTW if you try
|
forked disabling done #153, #154 dev server issue by nitrojs/nitro#1702 |
Since the introduction of the internal dev server being forked as a child process
bun --bun run dev
andbunx --bun nuxt dev
will exit silently with a zero code.This happens because child_process.fork() is only partially implemented in Bun. Specifically Bun does not do IPC on child processes yet.
This is an issue in Bun and not Nuxi.
The text was updated successfully, but these errors were encountered: