You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What you did: $ ./node_modules/.bin/cross-env TEST=test sleep 10 from first shell $ killall sleep from second shell $ echo $? 0 from the first shell
What happened:
cross-env returns with exit code 0.
Problem description:
cross-env should return with exit code 143.
This is problematic if cross-env runs inside npm scripts and the command exits for unexpected reasons (our case is a OOM kill) because the execution continues without reporting errors.