mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-03-31 15:20:32 +08:00
feat(cli): Add port option for start command.
This commit is contained in:
parent
f5b0e7e80f
commit
9e16e2f9b9
@ -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,
|
||||
});
|
||||
}
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user