From 389914c42713db7c36c2472ce6d69ed0af608d3f Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Tue, 3 Feb 2015 22:21:55 +1100 Subject: [PATCH] add use-strict to valid node flags - fixes #667 --- bin/6to5-node | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/6to5-node b/bin/6to5-node index cca66724c0..e7d29da39e 100755 --- a/bin/6to5-node +++ b/bin/6to5-node @@ -35,6 +35,7 @@ process.argv.slice(2).forEach(function(arg){ case "--prof": case "--throw-deprecation": case "--trace-deprecation": + case "--use-strict": args.unshift(arg); break;