From f256e1818296caa7a5da13d9d333e0c48c93f953 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Tue, 27 Jan 2015 06:40:57 +1100 Subject: [PATCH] add -L arg to loose in the CLI --- 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 15030d066a..14b99e724b 100755 --- a/bin/6to5/index.js +++ b/bin/6to5/index.js @@ -17,7 +17,7 @@ commander.option("-m, --modules [modules]", "Module formatter type to use [commo 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("--loose [list]", "List of transformers to enable their loose mode", util.list); +commander.option("-L, --loose [list]", "List of transformers to enable loose mode ON", util.list); commander.option("-o, --out-file [out]", "Compile all input files into a single file"); commander.option("-d, --out-dir [out]", "Compile an input directory of modules into an output directory"); commander.option("-c, --remove-comments", "Remove comments from the compiled code", false);