Skip to content
This repository was archived by the owner on Jan 9, 2023. It is now read-only.

Commit c159be3

Browse files
committed
fix(help command): fix output format files
1 parent 0f33cdc commit c159be3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/ddoc/extract/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ exports.default = (prog) => {
88
prog
99
.command('ddoc extract <src>', `Extract design document(s) from database exported backup file. Expects <src> backup file.`)
1010
.option('-d, --destination', 'Destination folder.', '.')
11-
.option('-f, --format', 'Destination file format. Possible values are json or js.', 'json')
11+
.option('-f, --format', 'Destination file format. Possible values are json, js and ts.', 'json')
1212
.example('ddoc extract db/main.txt')
1313
.example('ddoc extract db/main.txt')
1414
.action(extract_1.default);

src/ddoc/extract/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default (prog: Sade) => {
88
`Extract design document(s) from database exported backup file. Expects <src> backup file.`,
99
)
1010
.option('-d, --destination', 'Destination folder.', '.')
11-
.option('-f, --format', 'Destination file format. Possible values are json or js.', 'json')
11+
.option('-f, --format', 'Destination file format. Possible values are json, js and ts.', 'json')
1212
.example('ddoc extract db/main.txt')
1313
.example('ddoc extract db/main.txt')
1414
.action(extract)

0 commit comments

Comments
 (0)