From ff4e8aa339fffed857abd41796cba7c82701ad8e Mon Sep 17 00:00:00 2001 From: Samuel Reed Date: Thu, 6 Jul 2023 13:35:22 -0400 Subject: [PATCH] fix(errors): revert uncaughtException handler --- runner.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/runner.js b/runner.js index 565330a..f0b3148 100644 --- a/runner.js +++ b/runner.js @@ -4,10 +4,6 @@ const path = require("path"); const fs = require("fs"); const sourceMapSupport = require("source-map-support"); -process.on("uncaughtException", err => { - throw err; -}); - let sources = {}; let maps = {};