We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am running vinxi build on a Solid Start app and I have a bug in my code where I access window.
vinxi build
window
The bug itself is fine, however I noticed that the Vinxi process returns the 0 exit code which should only be used to indicate success.
0
If I run pnpm build && echo $? I see 0 where I would expected a non-zero exit code.
pnpm build && echo $?
This matters because it's common for CI processes to use the status to determine if it should continue executing.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am running
vinxi build
on a Solid Start app and I have a bug in my code where I accesswindow
.The bug itself is fine, however I noticed that the Vinxi process returns the
0
exit code which should only be used to indicate success.If I run
pnpm build && echo $?
I see0
where I would expected a non-zero exit code.This matters because it's common for CI processes to use the status to determine if it should continue executing.
The text was updated successfully, but these errors were encountered: