From 5d7e8f8faa425d89ff6db40b802e0264cb199e16 Mon Sep 17 00:00:00 2001 From: quilicicf Date: Fri, 18 Aug 2023 12:10:05 +0200 Subject: [PATCH] :bug: Fix tests (lint failing because of Deno.run) --- src/commands/simple/history.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/simple/history.ts b/src/commands/simple/history.ts index 956ef6e..c82a5b3 100644 --- a/src/commands/simple/history.ts +++ b/src/commands/simple/history.ts @@ -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);