From aaf97bdccb59e2c924bf45486a2ea381d4b2fe11 Mon Sep 17 00:00:00 2001 From: Vincenzo Scamporlino Date: Tue, 17 Mar 2026 12:12:48 +0100 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Signed-off-by: Vincenzo Scamporlino --- .../lib/preparation/collectPortableTemplateInput.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/cli-module-new/src/lib/preparation/collectPortableTemplateInput.ts b/packages/cli-module-new/src/lib/preparation/collectPortableTemplateInput.ts index 14b6e77e89..9239b95e18 100644 --- a/packages/cli-module-new/src/lib/preparation/collectPortableTemplateInput.ts +++ b/packages/cli-module-new/src/lib/preparation/collectPortableTemplateInput.ts @@ -16,7 +16,11 @@ import inquirer, { DistinctQuestion } from 'inquirer'; import { getCodeownersFilePath, parseOwnerIds } from '../codeowners'; -import { targetPaths } from '@backstage/cli-common'; +import { + targetPaths, + knownBackendPluginPackageNameByPluginId, + knownFrontendPluginPackageNameByPluginId, +} from '@backstage/cli-common'; import { PortableTemplateConfig, @@ -27,10 +31,6 @@ import { } from '../types'; import { PortableTemplate } from '../types'; import { resolvePackageParams } from './resolvePackageParams'; -import { - knownBackendPluginPackageNameByPluginId, - knownFrontendPluginPackageNameByPluginId, -} from '@backstage/cli-common'; type CollectTemplateParamsOptions = { config: PortableTemplateConfig;