(id: string, opts: BuildOptions)
| 61 | }; |
| 62 | |
| 63 | const buildVariableIconPackage = async (id: string, opts: BuildOptions) => { |
| 64 | consola.info( |
| 65 | `Downloading ${id} ${colors.bold(colors.yellow('[VARIABLE ICON]'))}`, |
| 66 | ); |
| 67 | const optsNew = { |
| 68 | ...opts, |
| 69 | isVariable: true, |
| 70 | dir: path.join(opts.dir, 'variable-icons', id), |
| 71 | }; |
| 72 | await build(id, optsNew); |
| 73 | consola.success( |
| 74 | `Finished processing ${id} ${colors.bold(colors.yellow('[VARIABLE ICON]'))}`, |
| 75 | ); |
| 76 | }; |
| 77 | |
| 78 | const testIds = [ |
| 79 | 'akshar', |
no test coverage detected