(id: string, opts: BuildOptions)
| 49 | }; |
| 50 | |
| 51 | const buildIconPackage = async (id: string, opts: BuildOptions) => { |
| 52 | consola.info(`Downloading ${id} ${colors.bold(colors.green('[ICON]'))}`); |
| 53 | const optsNew = { |
| 54 | ...opts, |
| 55 | dir: path.join(opts.dir, 'icons', id), |
| 56 | }; |
| 57 | await build(id, optsNew); |
| 58 | consola.success( |
| 59 | `Finished processing ${id} ${colors.bold(colors.green('[ICON]'))}`, |
| 60 | ); |
| 61 | }; |
| 62 | |
| 63 | const buildVariableIconPackage = async (id: string, opts: BuildOptions) => { |
| 64 | consola.info( |
no test coverage detected