Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/commands/batch/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export function batchCommand(program: Command) {
[] as string[]
)
.option('--compact', 'Print only the failed steps and the summary', false)
.option('--runtime <runtime>', 'Runtime to execute the app: node (default) or workerd', 'node')
.option('--runtime <runtime>', 'runtime to execute the app (node | workerd)', 'node')
.option('--no-bindings', 'Skip loading the local Cloudflare bindings')
.option(
'-e, --external <package>',
Expand Down
2 changes: 1 addition & 1 deletion src/commands/snapshot/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export function snapshotCommand(program: Command) {
.description('Print the current behavior as batch JSONL lines')
.argument('[file]', 'Path to the Hono app file')
.option('--status-only', 'Capture only the status codes, not the bodies', false)
.option('--runtime <runtime>', 'Runtime to execute the app: node (default) or workerd', 'node')
.option('--runtime <runtime>', 'runtime to execute the app (node | workerd)', 'node')
.option('--no-bindings', 'Skip loading the local Cloudflare bindings')
.option(
'-e, --external <package>',
Expand Down
Loading