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

Format updated files with Prettier

This commit is contained in:
Vjacheslav Trushkin 2022-01-09 22:27:47 +02:00
parent c1fb9f8e6c
commit 24ab828457
3 changed files with 19 additions and 12 deletions

View File

@ -48,11 +48,13 @@ export async function buildFiles(params: BuildParams) {
// Build files with TypeScript compiler first to make sure there are no errors and to generate .d.ts files
if (typeof buildScript === 'string') {
console.log(`Executing npm script ${buildScript}...`)
console.log(`Executing npm script ${buildScript}...`);
await exec(root, 'npm', ['run', buildScript]);
} else {
console.log('Executing tsc...')
await exec(root, process.platform === 'win32' ? 'tsc.cmd' : 'tsc', ['-b']);
console.log('Executing tsc...');
await exec(root, process.platform === 'win32' ? 'tsc.cmd' : 'tsc', [
'-b',
]);
}
// Build ES modules

View File

@ -16,18 +16,17 @@ export async function getCustomIcon(
if (typeof custom === 'function') {
result = await custom(icon);
}
else {
} else {
const inline = custom[icon];
result = typeof inline === 'function'
? await inline()
: inline;
result = typeof inline === 'function' ? await inline() : inline;
}
if (result) {
if (!result.startsWith('<svg ')) {
console.warn(`Custom icon "${icon}" in "${collection}" is not a valid SVG`);
console.warn(
`Custom icon "${icon}" in "${collection}" is not a valid SVG`
);
}
return transform ? await transform(result) : result
return transform ? await transform(result) : result;
}
}

View File

@ -1,5 +1,11 @@
import type { Awaitable } from '@antfu/utils';
export type CustomIconLoader = (name: string) => Awaitable<string | undefined>;
export type InlineCollection = Record<string, string | (() => Awaitable<string | undefined>)>;
export type CustomCollections = Record<string, CustomIconLoader | InlineCollection>;
export type InlineCollection = Record<
string,
string | (() => Awaitable<string | undefined>)
>;
export type CustomCollections = Record<
string,
CustomIconLoader | InlineCollection
>;