()
| 626 | options: loadNameCache, |
| 627 | // after hook |
| 628 | writeBundle() { |
| 629 | if (writeMeta && nameCache) { |
| 630 | let filename = getNameCachePath(); |
| 631 | let json = JSON.stringify(nameCache, null, 2); |
| 632 | if (endsWithNewLine) json += EOL; |
| 633 | fs.writeFile(filename, json, () => {}); |
| 634 | } |
| 635 | }, |
| 636 | }, |
| 637 | ], |
| 638 | options.visualize && visualizer(), |
nothing calls this directly
no test coverage detected
searching dependent graphs…