mirror of
https://github.com/iconoir-icons/iconoir
synced 2026-03-14 14:05:44 +01:00
7 lines
215 B
JavaScript
7 lines
215 B
JavaScript
export default async ({ targetName, config, targetConfig }) => {
|
|
const { default: task } = await import(
|
|
`./targets/${targetConfig.target || targetName}/index.js`
|
|
);
|
|
|
|
return task(config, targetConfig);
|
|
};
|