Skip to content

Commit

Permalink
corregido parametro --port (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
mind-ar committed Mar 13, 2024
1 parent 773c1f7 commit bcf4129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ program.command('run')
.option('-p, --project <path>', '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)
Expand Down

0 comments on commit bcf4129

Please sign in to comment.