Skip to content

Commit

Permalink
docs: Add new feature to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
RSeidelsohn committed Jan 31, 2022
1 parent 90b30b2 commit afaf3a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ You could see something like this:
- `--includePackages [list]` restrict output to the packages (either "package@fullversion" or "package@majorversion" or only "package") in the semicolon-seperated list
- `--json` output in json format.
- `--markdown` output in markdown format.
- `--nopeer` skip peer dependencies in output.
- `--onlyAllow [list]` fail (exit with code 1) on the first occurrence of the licenses not in the semicolon-seperated list
- `--onlyunknown` only list packages with unknown or guessed licenses.
- `--out [filepath]` write the data to a specific file.
Expand Down
1 change: 1 addition & 0 deletions bin/license-checker-rseidelsohn
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const usageMessage = [
' --includePackages [list] restrict output to the packages (either "package@fullversion" or "package@majorversion" or only "package") in the semicolon-seperated list',
' --json output in json format.',
' --markdown output in markdown format.',
' --nopeer skip peer dependencies in output.'
' --onlyAllow [list] fail (exit with code 1) on the first occurrence of the licenses not in the semicolon-seperated list',
' --onlyunknown only list packages with unknown or guessed licenses.',
' --out [filepath] write the data to a specific file.',
Expand Down
1 change: 1 addition & 0 deletions lib/args.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ const knownOpts = {
includePackages: String,
json: Boolean,
markdown: Boolean,
nopeer: Boolean,
onlyAllow: String,
onlyunknownOpts: Boolean,
out: require('path'),
Expand Down

0 comments on commit afaf3a3

Please sign in to comment.