(code, id)
| 7 | { |
| 8 | name: 'insert-lines', |
| 9 | transform(code, id) { |
| 10 | if (id.endsWith('mapped.js')) { |
| 11 | const magicString = new MagicString(code); |
| 12 | magicString.prepend('const removed = true;\nconst alsoRemoved = true; '); |
| 13 | return { code: magicString.toString(), map: magicString.generateMap({ hires: true }) }; |
| 14 | } |
| 15 | } |
| 16 | } |
| 17 | ] |
| 18 | }; |
nothing calls this directly
no test coverage detected
searching dependent graphs…