From 3e07ffa73ecc8ccd589252b62e321d6f899cab92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Thu, 13 Jul 2023 10:10:08 +0200 Subject: [PATCH] refactor: Move CLI commands types to own dir (no-changelog) (#6658) refactor: Move CLI commands types to own dir --- packages/cli/src/commands/executeBatch.ts | 2 +- .../cli/src/{commands/Interfaces.ts => types/commands.types.ts} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename packages/cli/src/{commands/Interfaces.ts => types/commands.types.ts} (100%) diff --git a/packages/cli/src/commands/executeBatch.ts b/packages/cli/src/commands/executeBatch.ts index c5e98caa2..df34d3239 100644 --- a/packages/cli/src/commands/executeBatch.ts +++ b/packages/cli/src/commands/executeBatch.ts @@ -24,7 +24,7 @@ import type { INodeSpecialCases, IResult, IWorkflowExecutionProgress, -} from './Interfaces'; +} from '../types/commands.types'; const re = /\d+/; diff --git a/packages/cli/src/commands/Interfaces.ts b/packages/cli/src/types/commands.types.ts similarity index 100% rename from packages/cli/src/commands/Interfaces.ts rename to packages/cli/src/types/commands.types.ts