Skip to content

Commit

Permalink
fix(testing, utils): fix import preventing future problems
Browse files Browse the repository at this point in the history
  • Loading branch information
aramirezj committed Jan 12, 2025
1 parent 55c878f commit 9404783
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/utils/src/lib/logging.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import isaacs_cliui from '@isaacs/cliui';
import { cliui } from '@poppinss/cliui';
import { cliui } from '@poppinss/cliui/build/index.js';
import { underline } from 'ansis';
import { TERMINAL_WIDTH } from './reports/constants.js';

Expand Down
2 changes: 1 addition & 1 deletion testing/test-utils/src/lib/utils/logging.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Logger } from '@poppinss/cliui';
import { Logger } from '@poppinss/cliui/build/index.js';

export function getLogMessages(logger: Logger): string[] {
return logger
Expand Down

0 comments on commit 9404783

Please sign in to comment.