Skip to content

Commit

Permalink
chore: Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
pawanpaudel93 committed Aug 4, 2024
1 parent f098c3b commit 421ca83
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,10 @@ Options:
-p, --process-id [processId] Specify process Id of existing process.
--build-only Bundle the contract into a single file and store it in the process-dist directory.
--out-dir [outDir] Used with --build-only to output the single bundle contract file to a specified directory.
--concurrency [limit] Concurrency limit for deploying multiple processes. (default: "5")
--retry-count [count] Number of retries for deploying contract. (default: "10")
--retry-delay [delay] Delay between retries in milliseconds. (default: "3000")
--concurrency [limit] Concurrency limit for deploying multiple processes. (default: 5)
--sqlite Use sqlite aos module when spawning new process.
--retry-count [count] Number of retries for deploying contract. (default: 10)
--retry-delay [delay] Delay between retries in milliseconds. (default: 3000)
-h, --help display help for command
```

Expand Down
6 changes: 3 additions & 3 deletions src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ program
.option('-p, --process-id [processId]', 'Specify process Id of an existing process.')
.option('--build-only', 'Bundle the contract into a single file and store it in the process-dist directory.')
.option('--out-dir [outDir]', 'Used with --build-only to output the single bundle contract file to a specified directory.')
.option('--concurrency [limit]', 'Concurrency limit for deploying multiple processes.', '5')
.option('--concurrency [limit]', 'Concurrency limit for deploying multiple processes.', parseToInt, 5)
.option('--sqlite', 'Use sqlite aos module when spawning new process')
.option('--retry-count [count]', 'Number of retries for deploying contract.', '10')
.option('--retry-delay [delay]', 'Delay between retries in milliseconds.', '3000')
.option('--retry-count [count]', 'Number of retries for deploying contract.', parseToInt, 10)
.option('--retry-delay [delay]', 'Delay between retries in milliseconds.', parseToInt, 3000)

program.parse(process.argv)

Expand Down

0 comments on commit 421ca83

Please sign in to comment.