Skip to content

Commit

Permalink
Update imports for other files that using ListrContext interface
Browse files Browse the repository at this point in the history
Signed-off-by: Alexei Karikov <[email protected]>
  • Loading branch information
Nicksqain committed Mar 28, 2023
1 parent 5b68cf6 commit efbcbdb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/dev/i18n/tasks/check_configs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
* specific language governing permissions and limitations
* under the License.
*/
import { ListrContext } from 'src/dev/run_i18n_check';
import { resolve, join } from 'path';
import { ListrContext } from '.';
import { I18N_RC } from '../constants';
import { checkConfigNamespacePrefix, arrayify } from '..';

Expand Down
2 changes: 1 addition & 1 deletion src/dev/i18n/tasks/extract_untracked_translations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*/

import { createFailError } from '@osd/dev-utils';
import { ListrContext } from 'src/dev/run_i18n_check';
import { ListrContext } from '.';
import { I18nConfig, matchEntriesWithExctractors, normalizePath, readFileAsync } from '..';

function filterEntries(entries: string[], exclude: string[]) {
Expand Down
2 changes: 1 addition & 1 deletion src/dev/i18n/tasks/merge_configs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
* specific language governing permissions and limitations
* under the License.
*/
import { ListrContext } from 'src/dev/run_i18n_check';
import { resolve, join } from 'path';
import { ListrContext } from '.';
import { assignConfigFromPath, arrayify } from '..';

export function mergeConfigs(additionalConfigPaths: string | string[] = []) {
Expand Down

0 comments on commit efbcbdb

Please sign in to comment.