(bundle)
| 42 | }; |
| 43 | |
| 44 | const getImports = async (bundle) => { |
| 45 | if (bundle.imports) { |
| 46 | return bundle.imports; |
| 47 | } |
| 48 | const { output } = await bundle.generate({ format: 'es' }); |
| 49 | const [{ imports }] = output; |
| 50 | return imports; |
| 51 | }; |
| 52 | |
| 53 | const getResolvedModules = async (bundle) => { |
| 54 | const { |
no outgoing calls
no test coverage detected