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
I recently switched a project from using npm-run-all to using && because we found that npm-run-all was returning exit code 0 when one of its several sub-tasks running webpack ran out of memory, causing it to return exit code 134. Since it returned exit code 0, it didn't fail the CI processes, so it took a few days for our QA team to discover the problem.
The text was updated successfully, but these errors were encountered:
I recently switched a project from using
npm-run-all
to using&&
because we found thatnpm-run-all
was returning exit code 0 when one of its several sub-tasks running webpack ran out of memory, causing it to return exit code 134. Since it returned exit code 0, it didn't fail the CI processes, so it took a few days for our QA team to discover the problem.The text was updated successfully, but these errors were encountered: