2
0
mirror of https://github.com/iconify/iconify.git synced 2024-09-20 09:19:02 +00:00

chore: update imports

This commit is contained in:
Joaquín Sánchez Jiménez 2022-01-10 12:21:34 +01:00
parent d090a3801b
commit 2d06165da3

View File

@ -1,7 +1,9 @@
import { promises as fs } from 'fs'; import { promises as fs } from 'fs';
import type { IconifyJSON } from '@iconify/types'; import type { IconifyJSON } from '@iconify/types';
import type { FullIconifyIcon } from '../icon'; import type { FullIconifyIcon } from '../icon';
import { iconToSVG, getIconData, tryInstallPkg } from '../index'; import { iconToSVG } from '../svg/build';
import { getIconData } from '../icon-set/get-icon';
import { tryInstallPkg } from './utils';
import createDebugger from 'debug'; import createDebugger from 'debug';
import { isPackageExists, resolveModule } from 'local-pkg'; import { isPackageExists, resolveModule } from 'local-pkg';
import { defaults as DefaultIconCustomizations } from '../customisations'; import { defaults as DefaultIconCustomizations } from '../customisations';