From 3c991f89e43d93e2255a330d41db2db96894bb5b Mon Sep 17 00:00:00 2001 From: Michael Bleigh Date: Fri, 2 Oct 2015 11:33:03 -0700 Subject: [PATCH] Adds documentation for default port and host. --- commands/serve.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/serve.js b/commands/serve.js index 105b2112..00a916ec 100644 --- a/commands/serve.js +++ b/commands/serve.js @@ -9,8 +9,8 @@ var logger = require('../lib/logger'); module.exports = new Command('serve') .description('start a local server for your static assets') - .option('-p, --port ', 'the port on which to listen', 5000) - .option('-o, --host ', 'the host on which to listen', 'localhost') + .option('-p, --port ', 'the port on which to listen (default: 5000)', 5000) + .option('-o, --host ', 'the host on which to listen (default: localhost)', 'localhost') .action(function(options) { var config = Config.load(options);