From 20dc8b05c9e234f1b5b5cd1af1d86d9e8974334f Mon Sep 17 00:00:00 2001 From: Tim Oxley Date: Tue, 25 Nov 2014 14:54:36 +0800 Subject: [PATCH] Remove --no-timeouts flag. Not a valid flag, causes errors when trying to use debug modes. --- bin/6to5-node | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/6to5-node b/bin/6to5-node index e9a45cc6fd..bf091e242d 100755 --- a/bin/6to5-node +++ b/bin/6to5-node @@ -14,13 +14,11 @@ process.argv.slice(2).forEach(function(arg){ switch (flag) { case "-d": args.unshift("--debug"); - args.push("--no-timeouts"); break; case "debug": case "--debug": case "--debug-brk": args.unshift(arg); - args.push("--no-timeouts"); break; case "-gc": case "--expose-gc":