(sourceText)
| 49 | } |
| 50 | |
| 51 | function applyCompatRewrites(sourceText) { |
| 52 | return sourceText |
| 53 | .replaceAll("from 'bun:bundle'", "from 'src/shims/bun-bundle.js'") |
| 54 | .replaceAll('from "bun:bundle"', 'from "src/shims/bun-bundle.js"') |
| 55 | } |
| 56 | |
| 57 | async function main() { |
| 58 | let scanned = 0 |