From 7167aeb65ad007f0d35b4ff513437ecb0962b986 Mon Sep 17 00:00:00 2001 From: Felix Kling Date: Sat, 10 Jan 2015 11:03:26 -0800 Subject: [PATCH] Fix short --whitelist option `6to5 -w generators` doesn't work because `-w` is also short for `--watch`. This changes the short option for `--whitelist` to `-l`. --- bin/6to5/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/6to5/index.js b/bin/6to5/index.js index f4bb9e9ed3..7a51f51e78 100755 --- a/bin/6to5/index.js +++ b/bin/6to5/index.js @@ -15,7 +15,7 @@ commander.option("-e, --experimental", "Enable experimental support for proposed commander.option("-p, --playground", "Enable playground support"); commander.option("-m, --modules [modules]", "Module formatter type to use [common]", "common"); -commander.option("-w, --whitelist [whitelist]", "Whitelist of transformers to ONLY use", util.list); +commander.option("-l, --whitelist [whitelist]", "Whitelist of transformers to ONLY use", util.list); commander.option("-b, --blacklist [blacklist]", "Blacklist of transformers to NOT use", util.list); commander.option("-i, --optional [list]", "List of optional transformers to enable", util.list); commander.option("-o, --out-file [out]", "Compile all input files into a single file");