From 4fee58e7bcdde6650f1fdeda3bf0617fd7cc0171 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Fri, 23 Jan 2015 23:05:35 +1100 Subject: [PATCH] remove includeRegenerator option --- bin/6to5/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/6to5/index.js b/bin/6to5/index.js index 0cd6382a1c..c0c16d736e 100755 --- a/bin/6to5/index.js +++ b/bin/6to5/index.js @@ -24,7 +24,6 @@ commander.option("-d, --out-dir [out]", "Compile an input directory of modules i commander.option("-c, --remove-comments", "Remove comments from the compiled code", false); commander.option("-m, --module-ids", "Insert module id in modules", false); commander.option("-R, --react-compat", "Makes the react transformer produce pre-v0.12 code"); -commander.option("-E, --include-regenerator", "Include the regenerator runtime if necessary", false); commander.option("--keep-module-id-extensions", "Keep extensions when generating module ids", false); commander.on("--help", function () { @@ -94,7 +93,6 @@ if (errors.length) { exports.opts = { keepModuleIdExtensions: commander.keepModuleIdExtensions, - includeRegenerator: commander.includeRegenerator, sourceMapName: commander.outFile, experimental: commander.experimental, reactCompat: commander.reactCompat,