(id)
| 24 | } |
| 25 | }, |
| 26 | load(id) { |
| 27 | if (id === entryUrl) { |
| 28 | const { meta } = this.getModuleInfo(entryUrl) ?? {} |
| 29 | metaArray.push(meta) |
| 30 | |
| 31 | return { code: 'export {}', meta: { x: 2 } } |
| 32 | } |
| 33 | }, |
| 34 | transform(_code, id) { |
| 35 | if (id === entryUrl) { |
| 36 | const { meta } = this.getModuleInfo(entryUrl) ?? {} |
nothing calls this directly
no test coverage detected