From 862bd6d92abea19459b23153bee12404a7885ade Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Mon, 30 Mar 2015 06:43:23 +1100 Subject: [PATCH] use kebab case instead of camelcase for no cli options --- bin/babel/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/babel/index.js b/bin/babel/index.js index 1002696a1b..cea14afe8d 100755 --- a/bin/babel/index.js +++ b/bin/babel/index.js @@ -19,7 +19,7 @@ each(File.options, function (option, key) { } if (option.type === "boolean" && option.default === true) { - arg = "no-" + key; + arg = "no-" + arg; } arg = "--" + arg;