Skip to content

Commit

Permalink
fix(cli): typo fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiob authored and sladg committed Jan 3, 2023
1 parent f4920f8 commit 49bb7fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ program
.option('--stackName <name>', 'Name of the stack to be deployed.', 'StandaloneNextjsStack-Temporary')
.option('--appPath <path>', 'Absolute path to app.', path.resolve(__dirname, '../dist/cdk/app.js'))
.option('--bootstrap', 'Bootstrap CDK stack.', false)
.option('--lambdaTimeout <sec>', 'Set timeout for lambda function handling server requirests.', Number, 15)
.option('--lambdaMemory <mb>', 'Set memory for lambda function handling server requirests.', Number, 512)
.option('--lambdaTimeout <sec>', 'Set timeout for lambda function handling server requests.', Number, 15)
.option('--lambdaMemory <mb>', 'Set memory for lambda function handling server requests.', Number, 512)
.option('--imageLambdaTimeout <sec>', 'Set timeout for lambda function handling image optimization.', Number, IMAGE_LAMBDA_DEFAULT_TIMEOUT)
.option('--imageLambdaMemory <mb>', 'Set memory for lambda function handling image optimization.', Number, IMAGE_LAMBDA_DEFAULT_MEMORY)
.option('--hostedZone <domainName>', 'Hosted zone domain name to be used for creating DNS records (example: example.com).', undefined)
Expand Down

0 comments on commit 49bb7fb

Please sign in to comment.