From 274b58573bd54b4677ba17c45db357c26f1eaef2 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Mon, 26 Jan 2015 00:14:19 +1100 Subject: [PATCH] change -l whitelist flag to -w in bin/6to5-node --- bin/_6to5-node | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/_6to5-node b/bin/_6to5-node index 69fac3114f..d95617724e 100644 --- a/bin/_6to5-node +++ b/bin/_6to5-node @@ -17,7 +17,7 @@ program.option("-i, --ignore [regex]", "Ignore all files that match this regex w program.option("-x, --extensions [extensions]", "List of extensions to hook into [.es6,.js,.es,.jsx]"); program.option("-r, --experimental", "Enable experimental support for proposed ES7 features"); program.option("-g, --playground", "Enable playground support"); -program.option("-l, --whitelist [whitelist]", "Whitelist of transformers to ONLY use", util.list); +program.option("-w, --whitelist [whitelist]", "Whitelist of transformers to ONLY use", util.list); program.option("-b, --blacklist [blacklist]", "Blacklist of transformers to NOT use", util.list); var pkg = require("../package.json");