Skip to content

Commit

Permalink
fix(cli): Indicate that diff --all is mutually exclusive from -i and …
Browse files Browse the repository at this point in the history
…-x (#72)

closes #71
  • Loading branch information
qualitymanifest committed Jan 28, 2020
1 parent 077ce49 commit a5b5470
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cli/src/commands/diff.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ export const builder = yargs =>
all: {
description: 'Include everything in diff',
group: GROUPS.FILTER,
type: 'boolean'
type: 'boolean',
conflicts: ['i', 'x']
},
...getOptions(OPTIONS.OUTPUT, {sourceType: 'object'}),
...OPTIONS.JSON_TRANSFORM,
Expand Down

0 comments on commit a5b5470

Please sign in to comment.