-
-
Notifications
You must be signed in to change notification settings - Fork 600
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
Error: Unexpected early exit #1594
Comments
I'm hitting this too :/
terser itself runs fine
I'm out and about rn (which is why I'm doing dev in termux lol) but when I get home I can try to debug. |
okay looks like the issue is os.cpus() can return |
a workaround until the fix is merged is to set Object.defineProperties(options, {
maxWorkers: {
value: cpus().length || 1,
enumerable: false
}
}) |
Awesome. Thank you for looking into this! |
https://stackblitz.com/edit/rollup-repro-myx9um
Expected Behavior
Build to complete successfully
Actual Behavior
Additional Information
I didn't see a way to change the architecture in stackblitz, so the build runs okay. This indicates there's some architecture problem with aarch64, I'm trying to pinpoint whether it's in the plugin or rollup itself.
The text was updated successfully, but these errors were encountered: