Skip to content

Commit

Permalink
chore(format): Replace spaces with tabs on CLI help
Browse files Browse the repository at this point in the history
  • Loading branch information
sudojunior committed Aug 9, 2021
1 parent 1aea376 commit b5c0b83
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,26 @@ import {loadFile} from './util/common.js';
import {sequence} from './index.js';

const cli = meow(`
Usage
$ channel-backup [options]
Usage
$ channel-backup [options]
Options
-h, --help Show this help.
-v, --version Show version.
-c, --config Specify config file (defaults to '{directory}/config.json').
-m, --mode Specify mode (replace, =update)
* replace: replace all messages in the channel.
* =update: update all messages in the channel (default).
-d, --directory Specify directory to backup (defaults to current working directory).
-s, --silent Don't output anything.
Examples
$ channel-backup -c config.json -m replace
Options
-h, --help Show this help.
-v, --version Show version.
-c, --config Specify config file (defaults to '{directory}/config.json').
-m, --mode Specify mode (replace, =update)
* replace: replace all messages in the channel.
* =update: update all messages in the channel (default).
-d, --directory Specify directory to backup (defaults to current working directory).
-s, --silent Don't output anything.
Notes
* --help and --version will terminate the program.
* '--mode update' will remove excess content after it has finished.
* '--mode replace' will remove all content it is aware of before it starts.
Examples
$ channel-backup -c config.json -m replace
Notes
* --help and --version will terminate the program.
* '--mode update' will remove excess content after it has finished.
* '--mode replace' will remove all content it is aware of before it starts.
`, {
importMeta: import.meta,
flags: {
Expand Down

0 comments on commit b5c0b83

Please sign in to comment.