Merge pull request #1425 from cesarandreu/cli-config-alias

Add -c config alias to the CLI
This commit is contained in:
Tobias Koppers 2015-09-10 09:53:35 +02:00
commit c97c3ab502
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
module.exports = function(optimist) { module.exports = function(optimist) {
optimist optimist
.boolean("help").alias("help", "h").alias("help", "?").describe("help") .boolean("help").alias("help", "h").alias("help", "?").describe("help")
.string("config").describe("config") .string("config").alias("config", "c").describe("config")
.string("context").describe("context") .string("context").describe("context")
.string("entry").describe("entry") .string("entry").describe("entry")
.string("module-bind").describe("module-bind") .string("module-bind").describe("module-bind")