Skip to content

Commit

Permalink
🐛 Fix tests (lint failing because of Deno.run)
Browse files Browse the repository at this point in the history
  • Loading branch information
quilicicf committed Aug 18, 2023
1 parent 2be705c commit 5d7e8f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/simple/history.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ export const options: YargsOptions = {
alias: 'p',
describe: 'Audit all commits on top of the parent branch',
type: 'boolean',
conflicts: ARG_FROM_OTHER_BRANCH,
conflicts: [ ARG_FROM_OTHER_BRANCH ],
},
[ ARG_FROM_OTHER_BRANCH ]: {
alias: 'o',
describe: 'Audit all commits on top of the provided branch',
type: 'string',
conflicts: ARG_FROM_PARENT_BRANCH,
conflicts: [ ARG_FROM_PARENT_BRANCH ],
},
};
export const command = toYargsCommand(baseCommand, options);
Expand Down

0 comments on commit 5d7e8f8

Please sign in to comment.