From 2033c1da3097dd08520bdda60cdbedc1775b401c Mon Sep 17 00:00:00 2001 From: Aleksey Smolenchuk Date: Fri, 10 Jun 2016 22:11:25 -0700 Subject: [PATCH] remove shorthand of --skip-initial-build -s is already taken by --source-maps --- packages/babel-cli/src/babel/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/babel-cli/src/babel/index.js b/packages/babel-cli/src/babel/index.js index 1894d55d24..a6c36dc7d3 100755 --- a/packages/babel-cli/src/babel/index.js +++ b/packages/babel-cli/src/babel/index.js @@ -40,7 +40,7 @@ each(options, function (option, key) { commander.option("-x, --extensions [extensions]", "List of extensions to compile when a directory has been input [.es6,.js,.es,.jsx]"); commander.option("-w, --watch", "Recompile files on changes"); -commander.option("-s, --skip-initial-build", "Do not compile files before watching"); +commander.option("--skip-initial-build", "Do not compile files before watching"); 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("-D, --copy-files", "When compiling a directory copy over non-compilable files");