feat(cli): Add port option for start command.

This commit is contained in:
Gervwyk 2022-01-23 21:41:07 +02:00
parent f5b0e7e80f
commit 9e16e2f9b9
2 changed files with 10 additions and 3 deletions

View File

@ -22,7 +22,14 @@ async function runStart({ context }) {
logger: context.print,
args: ['run', 'start'],
command: context.packageManager, // npm or yarn
processOptions: { cwd: context.directories.server },
processOptions: {
cwd: context.directories.server,
env: {
...process.env,
LOWDEFY_DIRECTORY_CONFIG: context.directories.config,
PORT: context.commandLineOptions.port,
},
},
silent: false,
});
}

View File

@ -67,8 +67,7 @@ program
'--package-manager <package-manager>',
'The package manager to use. Options are "npm" or "yarn".'
)
// TODO:
.option('--port <port>', 'Change the port the server is hosted at. Default is 3000.')
.option('--port <port>', 'Change the port the development server is hosted at. Default is 3000.')
// TODO:
.option(
'--ref-resolver <ref-resolver-function-path>',
@ -109,6 +108,7 @@ program
'--package-manager <package-manager>',
'The package manager to use. Options are "npm" or "yarn".'
)
.option('--port <port>', 'Change the port the server is hosted at. Default is 3000.')
.action(runCommand({ cliVersion: version })(start));
program.parse(process.argv);