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

Commit 37dd65e

Browse files
authored
Merge pull request #259 from microsoft/emimunoz/docs
Docs fixes
2 parents 1a63653 + d81eb6a commit 37dd65e

File tree

17 files changed

+384
-477
lines changed

17 files changed

+384
-477
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The following commands are currently available:
1212
* [Chatdown](https://github.com/microsoft/botframework-cli/tree/master/packages/cli#bf-chatdown)
1313
* [QnAMaker](https://github.com/microsoft/botframework-cli/tree/master/packages/cli#bf-qnamaker)
1414
* [Config](https://github.com/microsoft/botframework-cli/tree/master/packages/cli#bf-config)
15-
* [Luis](https://github.com/microsoft/botframework-cli/tree/emimunoz/luis/packages/cli#bf-luis)
15+
* [Luis](https://github.com/microsoft/botframework-cli/tree/master/packages/cli#bf-luis)
1616

1717
### Future Commands
1818
The following commands will be ported in upcoming releases:

packages/chatdown/README.md

Lines changed: 12 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -20,32 +20,26 @@ USAGE
2020
$ bf chatdown
2121
2222
OPTIONS
23-
-i, --in=in The path of the chat file or directory to be parsed. A glob expression may be passed containing
24-
chat files to be processed all at once, ex. ./**/*.chat. If flag is omitted, stdin will be used.
25-
If an output directory is not present (-o), it will default the output to the current working directory.
23+
-f, --force If --out flag is provided with the path to an existing file, overwrites that file
24+
-h, --help Chatdown command help
2625
27-
-h, --help Chatdown command help
26+
-i, --in=in The path of the chat file or directory to be parsed. A glob expression may be passed containing chat
27+
files to be processed all at once, ex. ./**/*.chat. If flag is omitted, stdin will be used. If an
28+
output directory is not present (-o), it will default the output to the current working directory.
2829
29-
-o, --out=out Path to the directory where the output of the multiple chat file processing (-o) will be
30-
placed.
30+
-o, --out=out Path to the directory where the output of the multiple chat file processing (-o) will be placed.
3131
32-
-p, --prefix Prefix stdout with package name.
32+
-p, --prefix Prefix stdout with package name.
3333
34-
-s, --static Use static timestamps when generating timestamps on activities.
34+
-s, --static Use static timestamps when generating timestamps on activities.
3535
36-
EXAMPLES
36+
EXAMPLE
3737
3838
$ bf chatdown
39-
$ bf chatdown -h
40-
$ bf chatdown --in ./path/to/file/sample.chat
41-
$ bf chatdown --in ./path/to/file/sample.chat --out ./
42-
$ bf chatdown --in=./path/to/file/sample.chat --out=./
43-
$ bf chatdown -i ./path/to/file/*.sample.chat -o ./
44-
$ bf chatdown -i=./path/to/file/*.sample.chat -o=./
45-
$ bf chatdown --in ./path/to/directory
46-
$ bf chatdown --in ./path/to/directory/*
39+
$ bf chatdown --in=./path/to/file/sample.chat
40+
$ bf chatdown --in ./test/utils/*.sample.chat -o ./
4741
$ (echo user=Joe && [ConversationUpdate=MembersAdded=Joe]) | bf chatdown --static
4842
```
4943

50-
_See code: [src/commands/chatdown.ts](https://github.com/Microsoft/chatdown/blob/v0.0.0/src/commands/chatdown.ts)_
44+
_See code: [src/commands/chatdown.ts](https://github.com/microsoft/botframework-cli/tree/master/packages/chatdown/src/commands/chatdown.ts)_
5145
<!-- commandsstop -->

packages/chatdown/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"@oclif/plugin-help"
6464
]
6565
},
66-
"repository": "https://github.com/microsoft/botframework-cli",
66+
"repository": "https://github.com/microsoft/botframework-cli/tree/master/packages/chatdown",
6767
"scripts": {
6868
"postpack": "rimraf oclif.manifest.json",
6969
"posttest": "tslint -p test -t stylish",

0 commit comments

Comments
 (0)