From bcf4129a38168ffaf2b5e295b9b9db950f0e8851 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Nu=C3=B1ez?= <10672208+mind-ar@users.noreply.github.com> Date: Wed, 13 Mar 2024 20:52:13 -0300 Subject: [PATCH] corregido parametro --port (#133) --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index cc2bd70..8a14784 100644 --- a/src/index.ts +++ b/src/index.ts @@ -22,7 +22,7 @@ program.command('run') .option('-p, --project ', 'path to project', process.cwd()) .option('-a, --assets [path]', 'path relative to project for game assets. By default, it takes the assets definition from package.json.', 'assets') .option('--skipValidations', 'skip code validation', false) - .option('--port', 'port to run the server', '3000') + .option('--port [port]', 'port to run the server', '3000') .option('-g, --game', 'sets the program as a game', false) .option('-v, --verbose', 'print debugging information', false) .option('-d, --startDiagram', 'activate the dynamic diagram (only for games)', false)