From 932742b1571054956c1282c99095fbb1504710f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milan=20Felix=20=C5=A0ulc?= Date: Mon, 31 Oct 2022 17:34:27 +0100 Subject: [PATCH] fix(table): use screen from @oclif/core --- src/cli-ux/styled/table.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli-ux/styled/table.ts b/src/cli-ux/styled/table.ts index 36920108..2722c376 100644 --- a/src/cli-ux/styled/table.ts +++ b/src/cli-ux/styled/table.ts @@ -1,6 +1,6 @@ import * as Interfaces from '../../interfaces' import * as F from '../../flags' -import {stdtermwidth} from '@oclif/screen' +import {stdtermwidth} from '../../screen' import * as chalk from 'chalk' import {capitalize, sumBy} from '../../util' import {safeDump} from 'js-yaml'