(input: string)
| 2 | import { parseImportGlob } from '../../../plugins/importMetaGlob' |
| 3 | |
| 4 | async function run(input: string) { |
| 5 | const items = await parseImportGlob( |
| 6 | input, |
| 7 | process.cwd(), |
| 8 | process.cwd(), |
| 9 | (id) => id, |
| 10 | ) |
| 11 | return items.map((i) => ({ |
| 12 | globs: i.globs, |
| 13 | options: i.options, |
| 14 | start: i.start, |
| 15 | })) |
| 16 | } |
| 17 | |
| 18 | async function runError(input: string) { |
| 19 | try { |
no test coverage detected