cli: move task logging utils to "new" module

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2025-04-29 11:43:32 +02:00
parent 3743ac12da
commit 82cb824bdd
3 changed files with 2 additions and 2 deletions
@@ -16,7 +16,7 @@
import { assertError } from '@backstage/errors';
import { addCodeownersEntry } from '../codeowners';
import { Task } from '../../../../lib/tasks';
import { Task } from '../tasks';
import {
PortableTemplate,
PortableTemplateConfig,
@@ -17,7 +17,7 @@ import fs from 'fs-extra';
import upperFirst from 'lodash/upperFirst';
import camelCase from 'lodash/camelCase';
import { paths } from '../../../../lib/paths';
import { Task } from '../../../../lib/tasks';
import { Task } from '../tasks';
import { PortableTemplateInput } from '../types';
export async function installNewPackage(input: PortableTemplateInput) {